-
Notifications
You must be signed in to change notification settings - Fork 0
116 lines (114 loc) · 3.56 KB
/
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
107
108
109
110
111
112
113
114
115
116
name: CI
on:
push:
pull_request:
env:
RUSTFLAGS: -Dwarnings
RUST_BACKTRACE: full
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt
- name: Check formatting
run: cargo fmt --all -- --check
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- name: Install rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install cargo-feature-combinations
run: cargo install cargo-feature-combinations
- name: Build code
run: cargo fc build
test:
needs: [build]
runs-on: ubuntu-latest
env:
RUST_LOG: debug
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- name: Install rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
- name: Install cargo-feature-combinations
run: cargo install cargo-feature-combinations
- name: Test code
run: cargo fc --fail-fast test -- --nocapture
coverage:
if: github.event_name == 'pull_request' || (github.event_name == 'push' && github.ref_type == 'branch' && (github.ref_name == 'master' || github.ref_name == 'coverage'))
needs: [test]
runs-on: ubuntu-latest
env:
RUST_LOG: debug
RUSTFLAGS: -Cinstrument-coverage
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: llvm-tools-preview
# dtolnay/linkme#88
# rust-lang/rust#124129
- name: Disable rust-lld
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zlinker-features=-lld >> $GITHUB_ENV
- run: cargo install grcov
- name: Install cargo-feature-combinations
run: cargo install cargo-feature-combinations
- run: cargo build --all-features --verbose
- name: Run tests
run: LLVM_PROFILE_FILE="spawns-%p-%m.profraw" cargo fc --fail-fast test --verbose -- --nocapture
- name: Generate coverage report
run: grcov $(find . -name "spawns-*.profraw" -print) --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o lcov.info
- name: Upload to codecov.io
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
lint:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- name: Install rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
override: true
components: clippy
- name: Lint code
run: cargo clippy --all-features --no-deps -- -D clippy::all
release:
if: github.event_name == 'push' && github.ref_type == 'tag'
needs: [build, test, lint]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Swatinem/rust-cache@v2
- name: extract package name from tag
id: package-name-extractor
run: echo "package=$(echo "$GITHUB_REF_NAME" | cut -d_ -f1)" >> $GITHUB_OUTPUT
- name: publish crate
env:
PACKAGE_NAME: ${{ steps.package-name-extractor.outputs.package }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish -p $PACKAGE_NAME