-
Notifications
You must be signed in to change notification settings - Fork 0
64 lines (54 loc) · 1.55 KB
/
ci.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
name: Continuous Integration
on:
workflow_dispatch:
push:
jobs:
main_stable:
name: Rust stable
uses: ./.github/workflows/_build.yml
with:
rust_toolchain: stable
rust_features: --features "full"
with_rustfmt: true
main_1_56_1:
name: Rust 1.56.1
uses: ./.github/workflows/_build.yml
with:
rust_toolchain: 1.56.1
rust_features: --features "full"
with_clippy: true
pre_build_script: ./scripts/msrv_pin_dependencies.sh
main_nightly:
name: Rust nightly
uses: ./.github/workflows/_build.yml
with:
rust_toolchain: nightly
rust_features: --all-features
cross_stable_i686:
name: Rust stable i686-unknown-linux-gnu
uses: ./.github/workflows/_cross_build.yml
with:
target: i686-unknown-linux-gnu
rust_toolchain: stable
rust_features: --features "full"
cross_stable_aarch64:
name: Rust stable aarch64-unknown-linux-gnu
uses: ./.github/workflows/_cross_build.yml
with:
target: aarch64-unknown-linux-gnu
rust_toolchain: stable
rust_features: --features "full"
cross_1_65_0_i686:
name: Rust 1.65.0 i686-unknown-linux-gnu
uses: ./.github/workflows/_cross_build.yml
with:
target: i686-unknown-linux-gnu
rust_toolchain: 1.65.0
rust_features: --features "full"
cross_1_65_0_aarch64:
name: Rust 1.65.0 aarch64-unknown-linux-gnu
uses: ./.github/workflows/_cross_build.yml
with:
target: aarch64-unknown-linux-gnu
rust_toolchain: 1.65.0
rust_features: --features "full"