-
Notifications
You must be signed in to change notification settings - Fork 0
160 lines (152 loc) · 4.9 KB
/
check.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
name: Check
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
env:
CARGO_TERM_COLOR: always
jobs:
test_linux:
name: Test Linux
runs-on: ubuntu-latest
strategy:
matrix:
target:
- "x86_64-unknown-linux-gnu"
- "i686-unknown-linux-gnu"
env:
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"
steps:
- name: Update sources
run: sudo apt update
- name: Install libc6-dev-i386
run: sudo apt install libc6-dev-i386
if: ${{ contains(matrix.target, 'i686') }}
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
toolchain: stable minus 2 releases
- name: Test gnu
run: |
cargo test --all-features --no-fail-fast --target ${{ matrix.target }}
cargo test --features std --no-default-features --no-fail-fast --target ${{ matrix.target }}
cargo run --example get-nth --target ${{ matrix.target }}
build_linux:
name: Build Linux
runs-on: ubuntu-latest
strategy:
matrix:
target:
- "x86_64-unknown-linux-gnu"
- "i686-unknown-linux-gnu"
- "arm-unknown-linux-gnueabihf"
- "armv7-unknown-linux-gnueabihf"
- "aarch64-unknown-linux-gnu"
env:
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"
steps:
- name: Update sources
run: sudo apt update
- name: Install libc6-dev-i386
run: sudo apt install libc6-dev-i386
if: ${{ contains(matrix.target, 'i686') }}
- name: Install libc6-dev-armhf-cross
run: sudo apt install libc6-dev-armhf-cross gcc-arm-linux-gnueabihf
if: ${{ contains(matrix.target, 'arm') }}
- name: Install libc6-dev-arm64-cross
run: sudo apt install libc6-dev-arm64-cross gcc-aarch64-linux-gnu
if: ${{ contains(matrix.target, 'aarch64') }}
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
toolchain: stable minus 2 releases
- name: Build gnu target
run: |
cargo build --all-features --target ${{ matrix.target }}
cargo build --features std --no-default-features
cargo build --no-default-features
build_windows:
name: Build Windows
runs-on: windows-latest
strategy:
matrix:
target: ["x86_64-pc-windows-msvc", "i686-pc-windows-msvc"]
env:
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
toolchain: stable minus 2 releases
- name: Build Windows
run: |
cargo build --all-features --target ${{ matrix.target }}
cargo build --features std --no-default-features
cargo build --no-default-features
test_windows:
name: Test Windows
runs-on: windows-latest
strategy:
matrix:
target: ["x86_64-pc-windows-msvc", "i686-pc-windows-msvc"]
env:
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
toolchain: stable minus 2 releases
- name: Test Windows
run: |
cargo test --all-features --no-fail-fast --target ${{ matrix.target }}
cargo test --features std --no-default-features --no-fail-fast --target ${{ matrix.target }}
cargo run --example get-nth --target ${{ matrix.target }}
build_embedded:
name: Build Embedded
runs-on: ubuntu-latest
strategy:
matrix:
target:
- "thumbv6m-none-eabi"
env:
RUSTFLAGS: "-D warnings"
RUSTDOCFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
toolchain: stable minus 2 releases
- name: no_std_release_build_sets
run: cargo build --release --no-default-features --features floats --target ${{ matrix.target }}
- name: no_std_release_build
run: cargo build --release --no-default-features --target ${{ matrix.target }}
fmt:
runs-on: ubuntu-latest
name: fmt
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt
- run: cargo fmt --check
clippy_check:
name: clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
toolchain: stable minus 2 releases
- run: cargo clippy --all-features -- --deny warnings
- run: cargo clippy --no-default-features -- --deny warnings