Merge branch 'master' into storage-GetTx-test
This commit is contained in:
commit
eca84b73c3
|
@ -70,8 +70,6 @@ test:test-unittest:
|
||||||
- build:build-linux
|
- build:build-linux
|
||||||
script:
|
script:
|
||||||
- make test
|
- make test
|
||||||
after_script:
|
|
||||||
- bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN
|
|
||||||
|
|
||||||
.test:test-race-conditions:
|
.test:test-race-conditions:
|
||||||
stage: test
|
stage: test
|
||||||
|
@ -89,8 +87,6 @@ test:test-coverage:
|
||||||
- make coverage
|
- make coverage
|
||||||
- make coverage_report
|
- make coverage_report
|
||||||
- make coverage_html
|
- make coverage_html
|
||||||
only:
|
|
||||||
- external_pull_requests
|
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- ./coverage.html
|
- ./coverage.html
|
||||||
|
@ -98,6 +94,18 @@ test:test-coverage:
|
||||||
# ************************************************************************/
|
# ************************************************************************/
|
||||||
# DEPLOY
|
# 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:
|
.release-candidate:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
script:
|
script:
|
||||||
|
@ -110,7 +118,6 @@ test:test-coverage:
|
||||||
- echo "Generating v0.0.1"
|
- echo "Generating v0.0.1"
|
||||||
when: manual
|
when: manual
|
||||||
|
|
||||||
|
|
||||||
# ************************************************************************/
|
# ************************************************************************/
|
||||||
# MONITOR
|
# MONITOR
|
||||||
# ************************************************************************/
|
# ************************************************************************/
|
||||||
|
|
Loading…
Reference in New Issue