-
Notifications
You must be signed in to change notification settings - Fork 11
112 lines (105 loc) · 3.11 KB
/
check.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
name: check
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [main]
pull_request:
branches: [main]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: git
jobs:
# Format job
check-format:
runs-on: ubuntu-20.04
strategy:
matrix:
step: ["check-format"]
steps:
- uses: actions/checkout@v2
- name: Set-Up
run: sudo apt install -y cmake pkg-config libssl-dev git build-essential clang libclang-dev curl protobuf-compiler
- name: Setup DVC
uses: iterative/setup-dvc@v1
- name: Fetch Fixtures
uses: nick-fields/retry@v2
with:
max_attempts: 10
timeout_minutes: 30
command: dvc pull -v
- name: Check Format
run: |
SKIP_WASM_BUILD=1 cargo fmt --all -- --check
SKIP_WASM_BUILD=1 cargo clippy --all-targets --workspace --exclude webb-client -- --deny warnings
# Build job
check-build:
runs-on: ubuntu-20.04
strategy:
matrix:
step: ["check-build"]
steps:
- uses: actions/checkout@v2
- name: Set-Up
run: sudo apt install -y cmake pkg-config libssl-dev git build-essential clang libclang-dev curl protobuf-compiler
- name: Setup DVC
uses: iterative/setup-dvc@v1
- name: Fetch Fixtures
uses: nick-fields/retry@v2
with:
max_attempts: 10
timeout_minutes: 30
command: dvc pull -v
- name: Check Build
run: |
SKIP_WASM_BUILD=1 cargo build --release -Z sparse-registry
# Test job
test:
runs-on: ubuntu-20.04
strategy:
matrix:
step: ["test"]
steps:
- uses: actions/checkout@v2
- name: Set-Up
run: sudo apt install -y cmake pkg-config libssl-dev git build-essential clang libclang-dev curl protobuf-compiler
- name: Setup DVC
uses: iterative/setup-dvc@v1
- name: Fetch Fixtures
uses: nick-fields/retry@v2
with:
max_attempts: 10
timeout_minutes: 30
command: dvc pull -v
- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
- name: Install cargo-nextest
uses: baptiste0928/cargo-install@v1
with:
crate: cargo-nextest
version: latest
args: "-Z sparse-registry"
- name: Cache Cargo
uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
target
target/debug
target/release
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Test
run: |
SKIP_WASM_BUILD=1 cargo nextest run --release -Z sparse-registry --workspace --exclude webb-client
# Main job, runs all parallel jobs
ci:
needs: [check-format, check-build, test]
runs-on: ubuntu-20.04
steps:
- name: All Done
run: echo "All Done"