-
-
Notifications
You must be signed in to change notification settings - Fork 11
109 lines (99 loc) · 3.41 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
name: HAL
on: [push, pull_request]
env:
RUSTDOCFLAGS: -D warnings
RUSTFLAGS: -D warnings
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- id: pacs
run: echo "::set-output name=pac_matrix::$(ls ./pac --indicator-style=none | grep atsam | cut -c 3- | jq -ncR '[inputs]')"
- id: boards
run: echo "::set-output name=board_matrix::$(ls ./boards --indicator-style=none | jq -ncR '[inputs]')"
- id: features
run: echo "::set-output name=feature_matrix::[\"reconfigurable-system-pins\",\"usart-spi-host-without-select\"]"
outputs:
pac_matrix: ${{ steps.pacs.outputs.pac_matrix }}
board_matrix: ${{ steps.boards.outputs.board_matrix }}
feature_matrix: ${{ steps.features.outputs.feature_matrix }}
build:
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
pac: ${{ fromJson(needs.setup.outputs.pac_matrix) }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install Rust (thumbv7em)
run: rustup show
- name: Build HAL for ${{ matrix.pac }}
run: cargo check --package atsamx7x-hal --features ${{ matrix.pac }},unproven
build-features:
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
features: ${{ fromJson(needs.setup.outputs.feature_matrix) }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install Rust (thumbv7em)
run: rustup show
- name: Build HAL for ${{ matrix.features }}
run: cargo check --package atsamx7x-hal --features ${{ matrix.features }},samv71q21b,unproven
board-examples:
needs: setup
runs-on: ubuntu-latest
strategy:
matrix:
board: ${{ fromJson(needs.setup.outputs.board_matrix) }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install Rust (thumbv7em)
run: rustup show
- name: Build boards/${{ matrix.board }}/examples/*
run: |
cd boards/${{ matrix.board }}
cargo check --examples
clippy-hal:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install Rust (thumbv7em)
run: rustup show
- name: Lint HAL
run: cargo clippy --package atsamx7x-hal --no-deps --features samv71q21b,unproven,reconfigurable-system-pins -- --deny warnings
clippy-examples:
needs: [setup, build, board-examples]
runs-on: ubuntu-latest
strategy:
matrix:
board: ${{ fromJson(needs.setup.outputs.board_matrix) }}
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install Rust (thumbv7em)
run: rustup show
- name: Lint boards/${{ matrix.board }}/examples/*
run: |
cd boards/${{ matrix.board }}
cargo clippy --examples --no-deps -- --deny warnings
docs:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install Rust (thumbv7em)
run: rustup show
- name: Build HAL documentation
run: cargo doc --package atsamx7x-hal --no-deps --features samv71q21b,unproven,reconfigurable-system-pins
- name: Build HAL doc tests
run: cargo test --package atsamx7x-hal --doc --features samv71q21b,unproven --target x86_64-unknown-linux-gnu