Update .gitlab-ci.yml
Revert change made to sanity check CI triggers for external pipeline
This commit is contained in:
parent
44d64ed5ac
commit
01bb9060cc
|
@ -38,8 +38,6 @@ build:build-linux:
|
||||||
stage: build
|
stage: build
|
||||||
script:
|
script:
|
||||||
- make
|
- make
|
||||||
only:
|
|
||||||
- external_pull_requests
|
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- ./server
|
- ./server
|
||||||
|
@ -72,8 +70,6 @@ test:test-unittest:
|
||||||
- build:build-linux
|
- build:build-linux
|
||||||
script:
|
script:
|
||||||
- make test
|
- make test
|
||||||
only:
|
|
||||||
- external_pull_requests
|
|
||||||
after_script:
|
after_script:
|
||||||
- bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN
|
- bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN
|
||||||
|
|
||||||
|
@ -93,8 +89,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
|
||||||
|
|
Loading…
Reference in New Issue