Browse Source

Merge pull request #31578 from nextcloud/s3-test-reliability

try to improve s3 primary storage test reliability
tags/v24.0.0beta1
Carl Schwan 2 years ago
parent
commit
d59179ae19
No account linked to committer's email address
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      .github/workflows/s3-primary.yml

+ 7
- 0
.github/workflows/s3-primary.yml View File

@@ -49,6 +49,13 @@ jobs:
./occ maintenance:install --verbose --database=sqlite --database-name=nextcloud --database-host=127.0.0.1 --database-user=root --database-pass=rootpassword --admin-user admin --admin-pass password
php -f index.php

- name: Wait for S3
run: |
sleep 10
curl -f -m 1 --retry-connrefused --retry 10 --retry-delay 1 http://localhost:9000/minio/health/ready
sleep 10
curl -f -m 1 --retry-connrefused --retry 10 --retry-delay 1 http://localhost:9000/minio/health/ready

- name: PHPUnit
working-directory: tests
run: phpunit --configuration phpunit-autotest.xml --group DB,SLOWDB

Loading…
Cancel
Save