Update .gitlab-ci.yml
Since the pipeline is not a DAG, add Gitlab keywork for all stages.
This commit is contained in:
parent
a4963da687
commit
3459619b36
|
@ -38,6 +38,8 @@ build:build-linux:
|
|||
stage: build
|
||||
script:
|
||||
- make
|
||||
only:
|
||||
- external_pull_requests
|
||||
artifacts:
|
||||
paths:
|
||||
- ./server
|
||||
|
@ -70,6 +72,8 @@ test:test-unittest:
|
|||
- build:build-linux
|
||||
script:
|
||||
- make test
|
||||
only:
|
||||
- external_pull_requests
|
||||
after_script:
|
||||
- bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN
|
||||
|
||||
|
|
Loading…
Reference in New Issue