forked from trussed-dev/trussed
-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (51 loc) · 1.82 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
name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
target:
- x86_64-unknown-linux-gnu
- thumbv7em-none-eabi
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust toolchain
run: |
rustup show
rustup target add ${{ matrix.target }}
- name: Install build dependencies
run: >
sudo apt-get update -y -qq &&
sudo apt-get install -y -qq llvm libc6-dev-i386 libclang-dev
- uses: fiam/arm-none-eabi-gcc@v1
with:
release: "9-2020-q2"
- name: Build
run: cargo build --workspace --target ${{ matrix.target }}
- name: Check all targets without default features
run: cargo check --workspace --all-targets --no-default-features
if: matrix.target == 'x86_64-unknown-linux-gnu'
- name: Check all targets with default features
run: cargo check --workspace --all-targets
if: matrix.target == 'x86_64-unknown-linux-gnu'
- name: Check all features and targets
run: cargo check --workspace --all-features --all-targets
if: matrix.target == 'x86_64-unknown-linux-gnu'
- name: Run tests
run: cargo test --features serde-extensions,virt
if: matrix.target == 'x86_64-unknown-linux-gnu'
- name: Check formatting
run: cargo fmt --all -- --check
if: matrix.target == 'x86_64-unknown-linux-gnu'
- name: Check clippy lints
run: make clippy
if: matrix.target == 'x86_64-unknown-linux-gnu'
- name: Check documentation
run: RUSTDOCFLAGS="-D warnings" cargo doc --no-deps --features serde-extensions,virt
if: matrix.target == 'x86_64-unknown-linux-gnu'