forked from rust-lang/jobserver-rs
-
-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (42 loc) · 1.2 KB
/
msrv.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: msrv
on: [push, pull_request]
env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse
MSRV: 1.63
jobs:
test:
name: msrv
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
defaults:
run:
shell: bash
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: |
rustup toolchain add $MSRV nightly --no-self-update
rustup default $MSRV
- name: Use minimal version and create Cargo.lock
run: |
./avoid-dev-deps.sh
cargo +nightly -Zminimal-versions update
- uses: Swatinem/rust-cache@v2
- run: cargo check --all-features
msrv-wasm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
run: |
rustup toolchain add $MSRV --no-self-update --target wasm32-wasi
rustup toolchain add nightly --no-self-update
rustup default $MSRV
- name: Use minimal version and create Cargo.lock
run: |
./avoid-dev-deps.sh
cargo +nightly -Zminimal-versions update
- uses: Swatinem/rust-cache@v2
- run: cargo check --target wasm32-wasi