Skip to content

Commit eae99ea

Browse files
author
Stephan Dilly
authored
Ci for older rust (#610)
* add ci for older rust version
1 parent 9b531d3 commit eae99ea

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [ubuntu-latest, macos-latest, windows-latest]
17-
rust: [nightly, stable]
17+
rust: [nightly, stable, '1.50']
1818
runs-on: ${{ matrix.os }}
1919
continue-on-error: ${{ matrix.rust == 'nightly' }}
2020

@@ -68,13 +68,19 @@ jobs:
6868
6969
build-linux-musl:
7070
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' }}
7176
steps:
7277
- uses: actions/checkout@master
7378
- name: Install Rust
7479
uses: actions-rs/toolchain@v1
7580
with:
76-
toolchain: stable
81+
toolchain: ${{ matrix.rust }}
7782
profile: minimal
83+
default: true
7884
target: x86_64-unknown-linux-musl
7985
- name: Setup MUSL
8086
run: |

0 commit comments

Comments
 (0)