generated from EmbarkStudios/opensource-template
-
Notifications
You must be signed in to change notification settings - Fork 13
106 lines (97 loc) · 3.12 KB
/
rust-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
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
on:
push:
branches:
- main
tags:
- "*"
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
name: CI
jobs:
lint:
name: Lint
strategy:
matrix:
os: [ubuntu-22.04, windows-2022, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
components: "clippy, rustfmt"
- uses: Swatinem/rust-cache@v2
# make sure all code has been formatted with rustfmt
- name: check rustfmt
run: cargo fmt -- --check --color always
# run clippy to verify we have no warnings
- run: cargo fetch
- name: cargo clippy
run: |
cargo clippy --all-targets --all-features -- -D warnings
test:
name: Test
strategy:
matrix:
os: [ubuntu-22.04, windows-2022, macos-14]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo fetch
- name: cargo test build
run: cargo build --tests
- name: cargo test
run: cargo test
build-android:
name: Build sources
runs-on: ubuntu-22.04
strategy:
matrix:
job:
#- { target: aarch64-unknown-linux-gnu, toolchain: stable }
- { target: aarch64-unknown-linux-musl, toolchain: stable }
- { target: aarch64-linux-android, toolchain: stable }
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.job.toolchain }}
target: ${{ matrix.job.target }}
- uses: Swatinem/rust-cache@v2
- name: Build
# We need to install cross from git, because https://github.com/cross-rs/cross/issues/1222
# is still unreleased (it's been almost a year since the last release)
# and we can't use 1.67.0 any longer because some dependencies (sigh,
# home, really?) have a higher MSRV...so...
run: |
cargo install cross --git https://github.com/cross-rs/cross --rev 185398b
cross build --target ${{ matrix.job.target }} --verbose --all-targets
deny-check:
name: cargo-deny
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: EmbarkStudios/cargo-deny-action@v1
publish-check:
name: Publish Check
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo fetch
- name: cargo publish check
run: |
cargo publish --dry-run --manifest-path crash-context/Cargo.toml
cargo publish --dry-run --manifest-path crash-handler/Cargo.toml
cargo publish --dry-run --manifest-path minidumper/Cargo.toml
cargo publish --dry-run --manifest-path sadness-generator/Cargo.toml
all:
runs-on: ubuntu-22.04
needs: [lint, test, build-android, deny-check, publish-check]
steps:
- run: echo "All test jobs passed"