Improved job dependencies
This commit is contained in:
parent
82dc53d044
commit
ae4bf9efa0
@ -11,8 +11,12 @@ stable:cargo:build:
|
|||||||
|
|
||||||
stable:cargo:test:
|
stable:cargo:test:
|
||||||
stage: test
|
stage: test
|
||||||
dependencies: [stable:cargo:build]
|
dependencies:
|
||||||
|
- stable:cargo:build
|
||||||
|
needs:
|
||||||
|
- stable:cargo:build
|
||||||
script:
|
script:
|
||||||
|
- rustup default stable
|
||||||
- cargo test --jobs 1
|
- cargo test --jobs 1
|
||||||
|
|
||||||
nightly:cargo:build:
|
nightly:cargo:build:
|
||||||
@ -25,7 +29,11 @@ nightly:cargo:build:
|
|||||||
|
|
||||||
nightly:cargo:test:
|
nightly:cargo:test:
|
||||||
stage: test
|
stage: test
|
||||||
dependencies: [nightly:cargo:build]
|
dependencies:
|
||||||
|
- nightly:cargo:build
|
||||||
|
needs:
|
||||||
|
- nightly:cargo:build
|
||||||
script:
|
script:
|
||||||
|
- rustup default nightly
|
||||||
- cargo test --jobs 1
|
- cargo test --jobs 1
|
||||||
allow_failure: true
|
allow_failure: true
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user