-
Notifications
You must be signed in to change notification settings - Fork 43
89 lines (79 loc) · 2.76 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
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
on:
push:
branches:
- 'master'
- 'staging'
- 'trying'
pull_request:
name: build
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@beta
with:
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- name: apt-get update
run: sudo apt-get -o Acquire::Retries=3 update
- name: Install libsystemd-dev
run: sudo apt-get -o Acquire::Retries=3 install libsystemd-dev
- run: cargo fmt --all -- --check
- run: cargo clippy --all --all-targets --features serde,default,bus,systemd_v245,journal -- -D warnings
features:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@beta
- uses: Swatinem/rust-cache@v2
- uses: taiki-e/install-action@cargo-hack
- name: apt-get update
run: sudo apt-get -o Acquire::Retries=3 update
- name: Install libsystemd-dev
run: sudo apt-get -o Acquire::Retries=3 install libsystemd-dev
- name: Check with all variants
run: cargo hack --feature-powerset --skip unstable-doc-cfg check --workspace --all-targets
test:
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- stable
- beta
- nightly
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
- name: apt-get update
run: sudo apt-get -o Acquire::Retries=3 update
- name: Install libsystemd-dev
run: sudo apt-get -o Acquire::Retries=3 install libsystemd-dev
- uses: taiki-e/install-action@cargo-hack
- name: Build everything
run: cargo hack --feature-powerset --skip unstable-doc-cfg build --all --all-targets
if: matrix.rust != 'nightly'
- name: Run all tests
run: cargo hack --feature-powerset --skip unstable-doc-cfg test --all
if: matrix.rust != 'nightly'
- name: Build everything
run: cargo hack --feature-powerset build --all --all-targets
if: matrix.rust == 'nightly'
- name: Run all tests
run: cargo hack --feature-powerset test --all
if: matrix.rust == 'nightly'
# msrv:
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: apt-get update
# run: sudo apt-get -o Acquire::Retries=3 update
# - name: Install libsystemd-dev
# run: sudo apt-get -o Acquire::Retries=3 install libsystemd-dev
# - uses: taiki-e/install-action@cargo-hack
# - uses: Swatinem/rust-cache@v2
# - run: cargo hack check --rust-version --workspace --all-targets --ignore-private