diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2022-11-23 20:13:36 +0100 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2022-11-25 17:58:51 +0100 |
commit | cddc753b29aa9b9244acd64da388f4ea73547528 (patch) | |
tree | 7fc46921a2bb299d450673f61fea16c681c7fcd7 /.github | |
parent | 61e72d4b0f3723eb9edf3cae0f9dbce5a8953012 (diff) | |
download | nextcloud-server-cddc753b29aa9b9244acd64da388f4ea73547528.tar.gz nextcloud-server-cddc753b29aa9b9244acd64da388f4ea73547528.zip |
Run s3 primary tests sequential
To avoid casual test failures.
Concurrent jobs may try to use the same port forwarding for the minio container.
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/s3-primary.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/s3-primary.yml b/.github/workflows/s3-primary.yml index 9fbc3f8d668..7d6fcef2043 100644 --- a/.github/workflows/s3-primary.yml +++ b/.github/workflows/s3-primary.yml @@ -13,6 +13,7 @@ jobs: strategy: # do not stop on another job's failure fail-fast: false + max-parallel: 1 matrix: php-versions: ['8.0'] key: ['objectstore', 'objectstore_multibucket'] @@ -52,8 +53,6 @@ jobs: run: | sleep 10 curl -f -m 1 --retry-connrefused --retry 10 --retry-delay 10 http://localhost:9000/minio/health/ready - sleep 10 - curl -f -m 1 --retry-connrefused --retry 10 --retry-delay 10 http://localhost:9000/minio/health/ready - name: PHPUnit working-directory: tests |