-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (37 loc) · 980 Bytes
/
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
name: Continuous Integration
on:
workflow_dispatch:
push:
jobs:
main_stable:
name: Rust stable
uses: ./.github/workflows/_build.yml
with:
rust_toolchain: stable
with_rustfmt: true
main_1_56_1:
name: Rust 1.56.1
uses: ./.github/workflows/_build.yml
with:
rust_toolchain: 1.56.1
with_clippy: true
cross_stable_i686:
name: Rust stable i686-unknown-linux-gnu
uses: ./.github/workflows/_cross_build.yml
with:
rust_toolchain: stable
cross_stable_aarch64:
name: Rust stable aarch64-unknown-linux-gnu
uses: ./.github/workflows/_cross_build.yml
with:
rust_toolchain: stable
cross_1_65_0_i686:
name: Rust 1.65.0 i686-unknown-linux-gnu
uses: ./.github/workflows/_cross_build.yml
with:
rust_toolchain: 1.65.0
cross_1_65_0_aarch64:
name: Rust 1.65.0 aarch64-unknown-linux-gnu
uses: ./.github/workflows/_cross_build.yml
with:
rust_toolchain: 1.65.0