-
Notifications
You must be signed in to change notification settings - Fork 2
104 lines (80 loc) · 2.52 KB
/
rust.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
name: Rust
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
jobs:
build:
name: ${{ matrix.config.toolchain }} / ${{ matrix.config.os }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- os: ubuntu-latest
toolchain: beta
- os: macos-latest
toolchain: stable
- os: ubuntu-latest
toolchain: stable
- os: windows-latest
toolchain: stable
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo
~/.rustup
key: ${{ runner.os }}-${{ matrix.config.toolchain }}
- name: Install Rust ${{ matrix.config.toolchain }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.config.toolchain }}
components: clippy, rustfmt
- name: Build
run: cargo build --all-targets --verbose --workspace
- name: Test
run: cargo test --all-targets --verbose --workspace
- name: Build --all-features
run: cargo build --all-targets --all-features --verbose --workspace
- name: Test --all-features
run: cargo test --all-targets --all-features --verbose --workspace
- name: Check formatting
run: cargo fmt --check --all
- name: Clippy
run: cargo clippy --all-features --all-targets -- -D warnings
cross-test:
name: cross / ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
toolchain:
- stable
arch:
- i686-unknown-linux-gnu
- powerpc-unknown-linux-gnu
- powerpc64le-unknown-linux-gnu
- riscv64gc-unknown-linux-gnu
- s390x-unknown-linux-gnu
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cargo
~/.rustup
key: ${{ runner.os }}-${{ matrix.toolchain }}
- name: Install Rust ${{ matrix.toolchain }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
targets: ${{ matrix.arch }}
- run: cargo install cross
- run: cross build --target ${{ matrix.arch }}
- run: cross test --target ${{ matrix.arch }}
- run: cross build --target ${{ matrix.arch }} --all-features
- run: cross test --target ${{ matrix.arch }} --all-features