-
Notifications
You must be signed in to change notification settings - Fork 0
156 lines (143 loc) · 3.99 KB
/
main.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
name: CI
# # NOTES
#
# ## GitHub Apps
#
# To use Codecov (for uploading and analyzing code coverage), you must
# authenticate the Codecov GitHub App via https://github.com/apps/codecov.
#
# ## GitHub Actions
#
# This workflow avoids the following GitHub Actions at the moment:
# - `actions-rs/cargo`: See https://github.com/actions-rs/cargo/issues/216 (Node.js 12)
# - `actions-rs/toolchain`: See https://github.com/actions-rs/toolchain/issues/219 (Node.js 12)
# - `actions-rs/tarpaulin`: This seems to be shaky, and will sometimes fail, and sometimes work.
#
# For `actions-rs/cargo` and `actions-rs/toolchain`, we instead use
# `cargo` and `rustup` directly in the CLI instead respectively.
#
# For `actions-rs/tarpaulin`, we instead use `cargo-llvm-codecov` via
# `taiki-e/install-action@cargo-llvm-cov`.
on:
push:
branches: [ $default-branch ]
pull_request:
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
- nightly
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
run: |
rustup set profile minimal
rustup toolchain install ${{ matrix.toolchain }}
rustup override set ${{ matrix.toolchain }}
- name: Cache dependencies
uses: Swatinem/rust-cache@v2
with:
shared-key: full-build-cache
- name: Build
run: cargo build --verbose
test:
name: test
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
run: |
rustup set profile minimal
rustup toolchain install stable
rustup override set stable
rustup component add llvm-tools-preview
- name: Cache dependencies
uses: Swatinem/rust-cache@v2
with:
shared-key: full-build-cache
- name: Install cargo-llvm-codecov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Generate code coverage
run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info
- name: Upload code coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
files: lcov.info
bench:
name: bench
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
run: |
rustup set profile minimal
rustup toolchain install stable
rustup override set stable
- name: Install Valgrind
run: sudo apt install -y valgrind
- name: Run benchmarks
run: cargo bench --no-fail-fast
fmt:
name: rustfmt-check
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
run: |
rustup set profile minimal
rustup toolchain install stable
rustup override set stable
rustup component add rustfmt
- name: Cache dependencies
uses: Swatinem/rust-cache@v2
with:
shared-key: full-build-cache
- name: Check formatting/code style
run: cargo fmt --all -- --check
clippy:
name: clippy-check
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Rust
run: |
rustup set profile minimal
rustup toolchain install stable
rustup override set stable
rustup component add clippy
- name: Cache dependencies
uses: Swatinem/rust-cache@v2
with:
shared-key: full-build-cache
- name: clippy
run: cargo clippy --all-features
continue-on-error: true
ci-success:
name: ci-success
if: ${{ success() }}
needs:
- build
- test
- bench
- clippy
- fmt
runs-on: ubuntu-latest
steps:
- name: ✅ CI succeeded
run: exit 0