diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-04-15 12:28:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-15 12:28:49 +0200 |
commit | 736ed2f4e7f749560d7df4f78b25f5c1329441f1 (patch) | |
tree | 02bcdc816604133218fe5335ff5f1be7576a4ff6 | |
parent | 3f30c17549252ae15c2b26a6d7e9eebc7d7268d1 (diff) | |
parent | 0060e5f28ee1d3ebcb699a3e248db295bc4c2f4f (diff) | |
download | nextcloud-server-736ed2f4e7f749560d7df4f78b25f5c1329441f1.tar.gz nextcloud-server-736ed2f4e7f749560d7df4f78b25f5c1329441f1.zip |
Merge pull request #15101 from nextcloud/backport/15097/stable16
[stable16] Pass proper TEST_SELECTION to drone objectstore
-rw-r--r-- | .drone.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml index cb6e5b7b167..9cc36d301c6 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1996,7 +1996,7 @@ steps: commands: - phpenmod xdebug - ./tests/drone-wait-objectstore.sh - - TEST_SELECTION=PRIMARY-${OBJECT_STORE} ./autotest.sh sqlite + - TEST_SELECTION=PRIMARY-s3 ./autotest.sh sqlite - wget https://codecov.io/bash -O codecov.sh - sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi" - sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi" @@ -2027,7 +2027,7 @@ steps: commands: - phpenmod xdebug - ./tests/drone-wait-objectstore.sh - - TEST_SELECTION=PRIMARY-${OBJECT_STORE} ./autotest.sh sqlite + - TEST_SELECTION=PRIMARY-azure ./autotest.sh sqlite - wget https://codecov.io/bash -O codecov.sh - sh -c "if [ '$DRONE_BUILD_EVENT' = 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -P $DRONE_PULL_REQUEST -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi" - sh -c "if [ '$DRONE_BUILD_EVENT' != 'pull_request' ]; then bash codecov.sh -B $DRONE_BRANCH -C $DRONE_COMMIT -t 117641e2-a9e8-4b7b-984b-ae872d9b05f5 -f tests/autotest-clover-sqlite.xml; fi" |