-
Notifications
You must be signed in to change notification settings - Fork 0
132 lines (123 loc) · 4.54 KB
/
ci.yaml
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
name: ci
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
CARGO_TERM_COLOR: always
jobs:
cargo-deny:
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- advisories
- bans licenses sources
continue-on-error: ${{ matrix.checks == 'advisories' }}
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}
cargo-fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo "RUST_NIGHTLY_TOOLCHAIN=nightly-$(jq -r '.rust.toolchain.nightly' workspace.json)" >> $GITHUB_ENV
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.RUST_NIGHTLY_TOOLCHAIN }}
components: rustfmt
- uses: Swatinem/rust-cache@v2
- run: cargo +${{ env.RUST_NIGHTLY_TOOLCHAIN }} fmt --all -- --check
cargo-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
- uses: Swatinem/rust-cache@v2
- uses: giraffate/clippy-action@v1
with:
reporter: "github-pr-review"
github_token: ${{ secrets.GITHUB_TOKEN }}
clippy_flags: -- -D warnings
cargo-docs:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- run: cargo doc --no-deps --package moveref
- uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
cargo-test-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo "RUST_NIGHTLY_TOOLCHAIN=nightly-$(jq -r '.rust.toolchain.nightly' workspace.json)" >> $GITHUB_ENV
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.RUST_NIGHTLY_TOOLCHAIN }}
- run: |
mkdir -p .github/caching
cargo search cargo-tarpaulin | awk '/^cargo-tarpaulin/ { print gensub(/"(.*)"/, "\\1", "g", $3); }' > .github/caching/cargo-tarpaulin.lock
- id: cache-cargo-tarpaulin
uses: actions/cache@v3
with:
path: ${{ runner.tool_cache }}/cargo-tarpaulin/bin
key: cargo-tarpaulin-bin-${{ hashFiles('.github/caching/cargo-tarpaulin.lock') }}
- if: "steps.cache-cargo-tarpaulin.outputs.cache-hit != 'true'"
run: cargo install --root ${{ runner.tool_cache }}/cargo-tarpaulin --force cargo-tarpaulin
- run: echo "${{ runner.tool_cache }}/cargo-tarpaulin/bin" >> $GITHUB_PATH
- uses: Swatinem/rust-cache@v2
- run: cargo +${{ env.RUST_NIGHTLY_TOOLCHAIN }} tarpaulin --verbose --workspace --timeout 120 --out Xml
- uses: codecov/codecov-action@v3
with:
fail_ci_if_error: true
cargo-miri:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo "RUST_NIGHTLY_TOOLCHAIN=nightly-$(jq -r '.rust.toolchain.nightly' workspace.json)" >> $GITHUB_ENV
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ env.RUST_NIGHTLY_TOOLCHAIN }}
components: miri
- uses: Swatinem/rust-cache@v2
- run: cargo +${{ env.RUST_NIGHTLY_TOOLCHAIN }} miri test
cargo-valgrind:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
- run: |
mkdir -p .github/caching
cargo search cargo-valgrind | awk '/^cargo-valgrind/ { print gensub(/"(.*)"/, "\\1", "g", $3); }' > .github/caching/cargo-valgrind.lock
- id: cache-cargo-valgrind
uses: actions/cache@v3
with:
path: ${{ runner.tool_cache }}/cargo-valgrind/bin
key: cargo-valgrind-bin-${{ hashFiles('.github/caching/cargo-valgrind.lock') }}
- if: "steps.cache-cargo-valgrind.outputs.cache-hit != 'true'"
run: cargo install --root ${{ runner.tool_cache }}/cargo-valgrind --force cargo-valgrind
- run: echo "${{ runner.tool_cache }}/cargo-valgrind/bin" >> $GITHUB_PATH
- uses: Swatinem/rust-cache@v2
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: valgrind
version: 1.0
- run: cargo valgrind test --features valgrind