Update .gitlab-ci.yml

Add tags to sanity check branch on master prior to Github driving merge on hash. (Resolve blind Gitlab pipeline issue)
This commit is contained in:
Marshall Gaucher 2019-10-14 20:17:47 -07:00 committed by GitHub
parent a9d9bae396
commit bbbee635f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -38,6 +38,8 @@ build:build-linux:
stage: build
script:
- make
only:
- master
artifacts:
paths:
- ./server
@ -70,6 +72,8 @@ test:test-unittest:
- build:build-linux
script:
- make test
only:
- master
after_script:
- bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN
@ -89,6 +93,8 @@ test:test-coverage:
- make coverage
- make coverage_report
- make coverage_html
only:
- master
artifacts:
paths:
- ./coverage.html