From 3a46f69c28bc7e739b636f65cc7d8e1f481b01da Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 19 Jan 2023 16:21:39 +0100 Subject: [PATCH 1/2] Specify the profiler app branch to test with So we can test in stable25 with a matching profiler version instead of master Signed-off-by: Joas Schilling --- .github/workflows/performance.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/performance.yml b/.github/workflows/performance.yml index 4352db26045a4..bdf8457ff0b4b 100644 --- a/.github/workflows/performance.yml +++ b/.github/workflows/performance.yml @@ -41,7 +41,7 @@ jobs: blueprint: tests/blueprints/basic.toml ref: ${{ github.event.pull_request.head.ref }} - name: Run before measurements - uses: nextcloud/profiler@fa03a1e6864fcb63fb92b8940fa72f5191baffbe + uses: nextcloud/profiler@1e66a9de5f76a01e9d1db4f0153bcc1cbf989b3d with: run: | curl -s -X PROPFIND -u test:test http://localhost:8080/remote.php/dav/files/test @@ -50,6 +50,7 @@ jobs: curl -s -u test:test -T README.md http://localhost:8080/remote.php/dav/files/test/new_file.txt curl -s -u test:test -X DELETE http://localhost:8080/remote.php/dav/files/test/new_file.txt output: before.json + profiler-branch: master - name: Apply PR run: | @@ -62,7 +63,7 @@ jobs: - name: Run after measurements id: compare - uses: nextcloud/profiler@fa03a1e6864fcb63fb92b8940fa72f5191baffbe + uses: nextcloud/profiler@1e66a9de5f76a01e9d1db4f0153bcc1cbf989b3d with: run: | curl -s -X PROPFIND -u test:test http://localhost:8080/remote.php/dav/files/test @@ -71,6 +72,7 @@ jobs: curl -s -u test:test -T README.md http://localhost:8080/remote.php/dav/files/test/new_file.txt curl -s -u test:test -X DELETE http://localhost:8080/remote.php/dav/files/test/new_file.txt output: after.json + profiler-branch: master compare-with: before.json - name: Upload profiles From a545dde304967b95496226761d937445eddc18ca Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 20 Jan 2023 16:29:38 +0100 Subject: [PATCH 2/2] Change testing branch to stable25 Signed-off-by: Joas Schilling --- .github/workflows/performance.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/performance.yml b/.github/workflows/performance.yml index bdf8457ff0b4b..2766adb5a8cff 100644 --- a/.github/workflows/performance.yml +++ b/.github/workflows/performance.yml @@ -50,7 +50,7 @@ jobs: curl -s -u test:test -T README.md http://localhost:8080/remote.php/dav/files/test/new_file.txt curl -s -u test:test -X DELETE http://localhost:8080/remote.php/dav/files/test/new_file.txt output: before.json - profiler-branch: master + profiler-branch: stable25 - name: Apply PR run: | @@ -72,7 +72,7 @@ jobs: curl -s -u test:test -T README.md http://localhost:8080/remote.php/dav/files/test/new_file.txt curl -s -u test:test -X DELETE http://localhost:8080/remote.php/dav/files/test/new_file.txt output: after.json - profiler-branch: master + profiler-branch: stable25 compare-with: before.json - name: Upload profiles