-
Notifications
You must be signed in to change notification settings - Fork 21
135 lines (127 loc) · 3.97 KB
/
rust.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
name: Rust
on:
push:
branches:
- main
pull_request:
# see https://matklad.github.io/2021/09/04/fast-rust-builds.html
env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
CI: 1
RUST_BACKTRACE: short
RUSTFLAGS: "-W rust-2021-compatibility"
RUSTUP_MAX_RETRIES: 10
# TODO: Add -D warnings when that's clean on Windows.
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
features: ["fail/failpoints", "s3,fail/failpoints"]
version: [stable, nightly, "1.73"]
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.version }}
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.features }}
- name: Show version
run: |
rustup show
cargo --version
rustc --version
- name: Build
run:
cargo build --all-targets --no-default-features --features=${{
matrix.features }}
- name: Test
run:
cargo test --no-default-features --features=${{ matrix.features }} --
--include-ignored
# Clippy and rustfmt are excellent tools but are turned off here because it's too
# easy for PRs to fail due to irrelevant changes including Clippy flagging problems
# that it did not notice before.
# - name: clippy
# run: cargo clippy --all-targets -- -d clippy::all
# Run rustfmt separately so that it does not block test results
rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- uses: Swatinem/rust-cache@v2
- name: rustfmt check
run: cargo fmt --all -- --check
cargo-mutants:
runs-on: ubuntu-latest
# Don't run expensive mutant tests until we know the build is clean, and recently
# touched code is clean.
needs: [pr-mutants]
# Don't run expensive mutant tests until we know the build is clean.
strategy:
# We want to see all the missed mutants so don't fail fast.
fail-fast: false
matrix:
shard: [0, 1, 2, 3]
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: taiki-e/install-action@v2
name: Install cargo-mutants using install-action
with:
tool: cargo-mutants
- uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt
- name: Run mutant tests
# Can't use --all-features here because BLAKE2 SIMD needs unstable...
# Don't use the S3 features because they require AWS credentials for realistic
# testing.
run: >
cargo mutants --no-shuffle -vV --cargo-arg --no-default-features
--features fail/failpoints --shard ${{ matrix.shard }}/4
- name: Archive results
uses: actions/upload-artifact@v3
if: always()
with:
name: mutation-report
path: mutants.out
pr-mutants:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Relative diff
run: |
git branch -av
git diff origin/${{ github.base_ref }}.. | tee git.diff
- uses: dtolnay/rust-toolchain@master
with:
toolchain: beta
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@v2
name: Install cargo-mutants using install-action
with:
tool: cargo-mutants
- name: Mutants in diff
run: >
cargo mutants --no-shuffle -vV --in-diff git.diff --features
fail/failpoints
- name: Archive mutants.out
uses: actions/upload-artifact@v3
if: always()
with:
name: mutants-incremental.out
path: mutants.out