-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (43 loc) · 1.56 KB
/
build.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
on: [push, pull_request]
name: Build
jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
rust:
- stable
- beta
- nightly
- 1.77.0 # MSRV
fail-fast: false
runs-on: ${{ matrix.os }}
env:
RUSTFLAGS: "-D warnings"
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- name: Build (no default features)
run: cargo build --verbose --all --no-default-features
- name: Build (log feature)
run: cargo build --verbose --all --no-default-features --features=log
- name: Build (log_parallelism feature)
run: cargo build --verbose --all --no-default-features --features=log_parallelism
- name: Build (default features)
run: cargo build --verbose --all
- name: Build (nightly feature)
if: ${{ matrix.rust == 'nightly' }}
run: cargo build --verbose --all --no-default-features --features=nightly
- name: Build (nightly + log features)
if: ${{ matrix.rust == 'nightly' }}
run: cargo build --verbose --all --no-default-features --features=nightly,log
- name: Build (nightly + log_parallelism features)
if: ${{ matrix.rust == 'nightly' }}
run: cargo build --verbose --all --no-default-features --features=nightly,log_parallelism
- name: Build (nightly + default features)
if: ${{ matrix.rust == 'nightly' }}
run: cargo build --verbose --all --features=nightly