diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-03-09 13:36:06 +0100 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-03-09 13:36:06 +0100 |
commit | e6161af6623d07a1f9d633c80c65a3ffa4e06a40 (patch) | |
tree | 7478b00fe3b5542ea92e15f39c58b3bf7ed3db45 /.github | |
parent | 7496bf3461a382c9a93d876b894448b7c4cd28cb (diff) | |
download | nextcloud-server-e6161af6623d07a1f9d633c80c65a3ffa4e06a40.tar.gz nextcloud-server-e6161af6623d07a1f9d633c80c65a3ffa4e06a40.zip |
Also check for instanceid and passwordhash
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/s3-external.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/s3-external.yml b/.github/workflows/s3-external.yml index a1d4dcbda22..8c2cdd7cfd1 100644 --- a/.github/workflows/s3-external.yml +++ b/.github/workflows/s3-external.yml @@ -55,7 +55,7 @@ jobs: php -S localhost:8080 & - name: PHPUnit run: | - echo "<?php return ['run' => true, 'secret' => 'actually-not-secret', 'hostname' => 'localhost','key' => 'minio','secret' => 'minio123', 'bucket' => 'bucket', 'port' => 9000, 'use_ssl' => false, 'autocreate' => true, 'use_path_style' => true];" > apps/${{ env.APP_NAME }}/tests/config.amazons3.php + echo "<?php return ['run' => true, 'secret' => 'actually-not-secret', 'passwordsalt' => 'actually-not-secret', 'hostname' => 'localhost','key' => 'minio','secret' => 'minio123', 'bucket' => 'bucket', 'port' => 9000, 'use_ssl' => false, 'autocreate' => true, 'use_path_style' => true];" > apps/${{ env.APP_NAME }}/tests/config.amazons3.php phpunit --configuration tests/phpunit-autotest-external.xml apps/files_external/tests/Storage/Amazons3Test.php phpunit --configuration tests/phpunit-autotest-external.xml apps/files_external/tests/Storage/VersionedAmazonS3Test.php - name: S3 logs |