diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-08 20:42:51 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-11-09 08:03:29 +0100 |
commit | b6562cb3864f26b82f70665112a8ca01628ce1c4 (patch) | |
tree | d40e71b4a65f23dc9f1a45452bcbe3bd58658851 /.drone.yml | |
parent | 05cf1dab4ca7d69a837c2c9e890f078cef76c744 (diff) | |
download | nextcloud-server-b6562cb3864f26b82f70665112a8ca01628ce1c4.tar.gz nextcloud-server-b6562cb3864f26b82f70665112a8ca01628ce1c4.zip |
Generate js codecov coverage
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml index e260ae37c40..d6b36097b96 100644 --- a/.drone.yml +++ b/.drone.yml @@ -6,6 +6,9 @@ pipeline: image: nextcloudci/jsunit:jsunit-5 commands: - ./autotest-js.sh + - curl -o codecov.sh https://codecov.io/bash + - 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; 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; fi" when: matrix: TESTS: jsunit |