-
Notifications
You must be signed in to change notification settings - Fork 33
98 lines (96 loc) · 2.88 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
name: Rust
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust Nightly
run: rustup default nightly
- name: Check Formatting
run: cargo fmt --all -- --check
feature-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust Stable
run: rustup default stable
- name: Install cargo-hack
run: cargo install cargo-hack
- name: Check Feature Matrix
run: cargo hack build --all --all-targets --feature-powerset
test:
name: Test ${{ matrix.rust_version }}/${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
rust_version: ['1.60.0', 'stable', 'nightly']
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Install Rust ${{ matrix.rust_version }}
run: rustup default ${{ matrix.rust_version }}
- name: Run Tests
run: cargo test --no-default-features --features=prost -- --test-threads=1
cross-test:
name: Test ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
matrix:
target:
- aarch64-unknown-linux-gnu
- armv5te-unknown-linux-gnueabi
- arm-unknown-linux-gnueabi
- armv7-unknown-linux-gnueabihf
steps:
- uses: actions/checkout@v3
- name: Ensure Rust up-to-date
run: rustup default stable
- name: Install Cross
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Run Tests
run: cross test --target ${{ matrix.target }} --no-default-features --features=prost -- --test-threads=1
cross-test-mips-mipssel:
name: Test ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
matrix:
target:
- mips-unknown-linux-gnu
- mipsel-unknown-linux-gnu
steps:
- uses: actions/checkout@v3
- name: Ensure Rust up-to-date
run: rustup default nightly
- name: Install Cross
run: cargo install cross --git https://github.com/cross-rs/cross
- name: Run Tests
run: cross +nightly test --target ${{ matrix.target }} --no-default-features --features=prost -- --test-threads=1
env:
RUSTFLAGS: "-C opt-level=1"
docs:
runs-on: ubuntu-latest
env:
RUSTDOCFLAGS: -Dwarnings
steps:
- uses: actions/checkout@v3
- name: Install Rust Nightly
run: rustup default nightly
- name: Check Docs
run: cargo doc --all-features --workspace --no-deps
bench:
name: Bench ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v3
- name: Install Rust Stable
run: rustup default stable
- name: Run Benchmarks
run: cargo bench -- --output-format bencher