-
Notifications
You must be signed in to change notification settings - Fork 49
95 lines (85 loc) · 2.56 KB
/
ci.yaml
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
on:
push:
branches: [ staging, trying, master ]
pull_request:
name: Continuous integration
jobs:
ci-linux:
runs-on: ubuntu-22.04
continue-on-error: ${{ matrix.experimental || false }}
strategy:
matrix:
# All generated code should be running on stable now, MSRV is 1.75.0
rust: [nightly, stable, 1.75.0]
buildflags: [--no-default-features, ""]
include:
# Nightly is only for reference and allowed to fail
- rust: nightly
experimental: true
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
- name: Run CI script for x86_64-unknown-linux-gnu
run: |
cargo check ${{ matrix.buildflags }}
- name: Run tests
run: |
cargo test
# On macOS and Windows, we at least make sure that the crate builds and links.
build-other:
strategy:
matrix:
os:
- macOS-latest
- windows-latest
buildflags: [--no-default-features, ""]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build crate for host OS
run: |
cargo build ${{ matrix.buildflags }}
- name: Test on host OS
run: |
cargo test
build-example:
name: Build example
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
example:
- parallel_ili9341_rp_pico
- spi-ili9486-esp32-c3
- spi-st7789-rpi-zero-w
include:
- target: thumbv6m-none-eabi
example: parallel_ili9341_rp_pico
- target: riscv32imc-unknown-none-elf
example: spi-ili9486-esp32-c3
- target: arm-unknown-linux-gnueabihf
example: spi-st7789-rpi-zero-w
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
target: ${{ matrix.target }}
- if: ${{ startsWith(matrix.target, 'arm') }}
run: |
sudo apt-get update
sudo apt-get install gcc-arm-linux-gnueabihf
- run: cargo install flip-link
- name: Build ${{ matrix.example }} example
run: cargo build --target ${{ matrix.target }}
working-directory: ./mipidsi/examples/${{ matrix.example }}
build-docs:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Build docs
run: |
RUSTDOCFLAGS=-Dwarnings cargo doc