diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-12-20 22:10:09 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2016-12-20 22:25:49 +0100 |
commit | d32e0d57e0448fd78ce40ff73189329f53c21686 (patch) | |
tree | 3af78c4b1763e956b04cb401062ffe0a3c574a2f /.drone.yml | |
parent | 1c80307537ea6e8542c5afda6b2ddb2d4ddf4dc3 (diff) | |
download | nextcloud-server-d32e0d57e0448fd78ce40ff73189329f53c21686.tar.gz nextcloud-server-d32e0d57e0448fd78ce40ff73189329f53c21686.zip |
Run coverage
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml index 65717641f29..d811de54c1b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -108,7 +108,12 @@ pipeline: image: nextcloudci/samba-native-php7.0:samba-native-php7.0-1 commands: - smbd -D -FS & - - NOCOVERAGE=true ./autotest-external.sh sqlite smb-linux + - ./autotest-external.sh sqlite smb-linux + - 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-external-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-external-clover-sqlite.xml; fi" + - 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-external-clover-sqlite-smb-linux.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-external-clover-sqlite-smb-linux.xml; fi" when: matrix: TESTS: sqlite-php7.0-samba-native @@ -116,7 +121,12 @@ pipeline: image: nextcloudci/samba-non-native-php7.0:samba-non-native-php7.0-2 commands: - smbd -D -FS & - - NOCOVERAGE=true ./autotest-external.sh sqlite smb-linux + - ./autotest-external.sh sqlite smb-linux + - 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-external-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-external-clover-sqlite.xml; fi" + - 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-external-clover-sqlite-smb-linux.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-external-clover-sqlite-smb-linux.xml; fi" when: matrix: TESTS: sqlite-php7.0-samba-non-native |