diff options
-rw-r--r-- | .drone.yml | 2 | ||||
-rw-r--r-- | .github/workflows/performance.yml | 4 | ||||
-rwxr-xr-x | tests/acceptance/run-local.sh | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.drone.yml b/.drone.yml index 3507d306c10..5b0c0f111cd 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1240,7 +1240,7 @@ steps: commands: # JavaScript files are not used in integration tests, so it is not needed to # build them. - - git clone --depth 1 --branch master https://github.com/nextcloud/spreed apps/spreed + - git clone --depth 1 --branch stable27 https://github.com/nextcloud/spreed apps/spreed - cd apps/spreed - composer --version - composer self-update --2 diff --git a/.github/workflows/performance.yml b/.github/workflows/performance.yml index 44ca8954078..3d63d5fa671 100644 --- a/.github/workflows/performance.yml +++ b/.github/workflows/performance.yml @@ -52,7 +52,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: stable27 - name: Apply PR run: | @@ -74,7 +74,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: stable27 compare-with: before.json - name: Upload profiles diff --git a/tests/acceptance/run-local.sh b/tests/acceptance/run-local.sh index 7e66ca71ec7..017b8b67f5f 100755 --- a/tests/acceptance/run-local.sh +++ b/tests/acceptance/run-local.sh @@ -64,7 +64,7 @@ if [ "$1" = "--acceptance-tests-dir" ]; then fi ACCEPTANCE_TESTS_CONFIG_DIR="../../$ACCEPTANCE_TESTS_DIR/config" -DEV_BRANCH="master" +DEV_BRANCH="stable27" # "--timeout-multiplier N" option can be provided to set the timeout multiplier # to be used in ActorContext. |