[pre-commit.ci] pre-commit autoupdate #450
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Pyspy Profiling Test | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
paths: | |
- '**' | |
- '.github/workflows/pyspy-profiling.yaml' | |
- '!docs/**' | |
- '!*.rst' | |
- '!*.md' | |
- '!datacube_ows/__init__.py' | |
- '!.github/**' | |
push: | |
branches: | |
- 'master' | |
paths: | |
- '**' | |
- '.github/workflows/pyspy-profiling.yaml' | |
- '!docs/**' | |
- '!*.rst' | |
- '!*.md' | |
- '!datacube_ows/__init__.py' | |
- '!.github/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# Run performance profiling | |
- name: setup performance profiling with py-spy (stage 1 - run profiling containers) | |
run: | | |
export $(grep -v '^#' .env_simple | xargs) | |
docker-compose -f docker-compose.yaml -f docker-compose.db.yaml -f docker-compose.pyspy.yaml up -d | |
- name: Sleep for 10 seconds (stage 1 - wait for services to be ready) | |
uses: whatnick/wait-action@master | |
with: | |
time: '10s' | |
- name: set output container pid (stage 1 - get ows container pid) | |
id: set-output-container-id | |
run: | | |
export $(grep -v '^#' .env_simple | xargs) | |
echo "::set-output name=PID::$(docker inspect --format '{{.State.Pid}}' $(docker inspect -f '{{.Name}}' \ | |
$(docker-compose -f docker-compose.yaml -f docker-compose.db.yaml -f docker-compose.pyspy.yaml ps -q ows) \ | |
| cut -c2-))" | |
- name: Run py-spy profiling (stage 1 - run profiling service) | |
timeout-minutes: 1 | |
continue-on-error: true | |
run: | | |
export $(grep -v '^#' .env_simple | xargs) | |
docker-compose -f docker-compose.yaml -f docker-compose.db.yaml -f docker-compose.pyspy.yaml \ | |
exec -T ows /bin/sh -c "cd /code;./test_urls.sh &" | |
docker-compose -f docker-compose.yaml -f docker-compose.db.yaml -f docker-compose.pyspy.yaml \ | |
run pyspy record -f speedscope -o ./artifacts/profile.json --duration 30 \ | |
--pid ${{steps.set-output-container-id.outputs.PID}} --subprocesses | |
- name: Stop py-spy profiling after timeout (stage 1 - stop profiling) | |
run: | | |
export $(grep -v '^#' .env_simple | xargs) | |
docker-compose -f docker-compose.yaml -f docker-compose.db.yaml -f docker-compose.pyspy.yaml down | |
- name: Upload profile to artifact (stage 1 - Upload profiling svg to artifacts) | |
uses: actions/upload-artifact@v3 | |
with: | |
name: profile.json | |
path: ./artifacts/profile.json |