File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 14
14
fail-fast : false
15
15
matrix :
16
16
os : [ubuntu-latest, macos-latest, windows-latest]
17
- rust : [nightly, stable]
17
+ rust : [nightly, stable, '1.50' ]
18
18
runs-on : ${{ matrix.os }}
19
19
continue-on-error : ${{ matrix.rust == 'nightly' }}
20
20
@@ -68,13 +68,19 @@ jobs:
68
68
69
69
build-linux-musl :
70
70
runs-on : ubuntu-latest
71
+ strategy :
72
+ fail-fast : false
73
+ matrix :
74
+ rust : [nightly, stable, '1.50']
75
+ continue-on-error : ${{ matrix.rust == 'nightly' }}
71
76
steps :
72
77
- uses : actions/checkout@master
73
78
- name : Install Rust
74
79
uses : actions-rs/toolchain@v1
75
80
with :
76
- toolchain : stable
81
+ toolchain : ${{ matrix.rust }}
77
82
profile : minimal
83
+ default : true
78
84
target : x86_64-unknown-linux-musl
79
85
- name : Setup MUSL
80
86
run : |
You can’t perform that action at this time.
0 commit comments