Merge branch 'master' into update_docs

This commit is contained in:
Marshall Gaucher 2019-10-29 09:59:22 -07:00 committed by GitHub
commit 0e21b9f8d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 5 deletions

View File

@ -70,8 +70,6 @@ test:test-unittest:
- build:build-linux
script:
- make test
after_script:
- bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN
.test:test-race-conditions:
stage: test
@ -89,8 +87,6 @@ test:test-coverage:
- make coverage
- make coverage_report
- make coverage_html
only:
- external_pull_requests
artifacts:
paths:
- ./coverage.html
@ -98,6 +94,18 @@ test:test-coverage:
# ************************************************************************/
# DEPLOY
# ************************************************************************/
deploy_staging:
stage: deploy
script:
- make
- make test
environment:
name: staging
only:
- master
after_script:
- bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN
.release-candidate:
stage: deploy
script:
@ -110,7 +118,6 @@ test:test-coverage:
- echo "Generating v0.0.1"
when: manual
# ************************************************************************/
# MONITOR
# ************************************************************************/