ci: simplify nightly
This commit is contained in:
parent
0343e5d8ab
commit
47d8a74524
|
@ -3,5 +3,5 @@ delete_merged_branches = true
|
||||||
status = [
|
status = [
|
||||||
"style",
|
"style",
|
||||||
"test (stable)",
|
"test (stable)",
|
||||||
"compile (stable, false)",
|
"compile (stable)",
|
||||||
]
|
]
|
||||||
|
|
|
@ -35,22 +35,18 @@ jobs:
|
||||||
|
|
||||||
compile:
|
compile:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
continue-on-error: ${{ matrix.optional }}
|
continue-on-error: ${{ matrix.toolchain == 'nightly' }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
toolchain: [stable]
|
toolchain: [stable]
|
||||||
features: ['']
|
features: ['']
|
||||||
optional: [false]
|
|
||||||
include:
|
include:
|
||||||
- toolchain: beta
|
- toolchain: beta
|
||||||
features: ''
|
features: ''
|
||||||
optional: false
|
|
||||||
- toolchain: stable
|
- toolchain: stable
|
||||||
features: pounder_v1_1
|
features: pounder_v1_1
|
||||||
optional: false
|
|
||||||
- toolchain: nightly
|
- toolchain: nightly
|
||||||
features: nightly
|
features: nightly
|
||||||
optional: true
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions-rs/toolchain@v1
|
- uses: actions-rs/toolchain@v1
|
||||||
|
|
Loading…
Reference in New Issue