-
Notifications
You must be signed in to change notification settings - Fork 41
114 lines (96 loc) · 3.27 KB
/
rust.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
name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install specified rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: '1.82.0'
target: x86_64-unknown-none
profile: minimal
override: true
components: rustfmt, rust-src, clippy
- name: Install Microsoft TPM build dependencies
run: sudo apt install -y autoconf autoconf-archive pkg-config build-essential automake
- name: Check that Cargo.lock is up to date
uses: actions-rs/cargo@v1
with:
command: update
args: --workspace --locked
# ubuntu-latest does not have binutils 2.39, which we need for
# ld to work, so build all the objects without performing the
# final linking step.
- name: Build
run: make FEATURES="default,enable-gdb" bin/svsm-kernel.elf stage1/stage1.o stage1/reset.o
- name: Run tests
run: make test
- name: Format
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Clippy on no_std x86_64-unknown-none
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --exclude igvmbuilder --exclude igvmmeasure --exclude svsm-fuzz --all-features -- -D warnings
- name: Clippy on std x86_64-unknown-linux-gnu
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --all-features --exclude svsm --exclude svsm-fuzz --target=x86_64-unknown-linux-gnu -- -D warnings
- name: Clippy on svsm-fuzz
uses: actions-rs/cargo@v1
with:
command: clippy
args: --package svsm-fuzz --all-features --target=x86_64-unknown-linux-gnu -- -D warnings
env:
RUSTFLAGS: --cfg fuzzing
- name: Clippy on tests
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --all-features --tests --target=x86_64-unknown-linux-gnu -- -D warnings
- name: Check documentation
run: make doc
env:
RUSTDOCFLAGS: -D warnings
nightly-check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: x86_64-unknown-none
profile: minimal
override: true
components: rustfmt
# The bindings.rs is auto-generated during make, but we are not
# building the code with nightly. So we initialize bindings.rs here
# for cargo-fmt in the next workflow, otherwise it will fail reporting
# that bindings.rs does not exist.
- name: Touch libmstpm bindings
run: echo "" > libmstpm/src/bindings.rs
- name: Format doctests
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check --config "format_code_in_doc_comments=true"