embassy/.github/workflows/rust.yml

158 lines
4.8 KiB
YAML
Raw Normal View History

2020-10-31 23:03:46 +01:00
name: Rust
on:
push:
2020-12-01 17:52:06 +01:00
branches: [master]
2020-10-31 23:03:46 +01:00
pull_request:
2020-12-01 17:52:06 +01:00
branches: [master]
2020-10-31 23:03:46 +01:00
env:
CARGO_TERM_COLOR: always
jobs:
2021-03-19 15:09:56 +01:00
ci:
2020-10-31 23:03:46 +01:00
runs-on: ubuntu-latest
2021-03-19 15:09:56 +01:00
strategy:
matrix:
include:
- package: embassy
target: thumbv7em-none-eabi
- package: embassy
target: thumbv7em-none-eabi
2021-05-19 12:57:22 +02:00
features: log,executor-agnostic
2021-03-19 15:09:56 +01:00
- package: embassy
target: thumbv7em-none-eabi
features: defmt
- package: embassy
target: thumbv6m-none-eabi
features: defmt
2021-06-02 01:30:07 +02:00
- package: examples/std
2021-05-28 23:13:23 +02:00
target: x86_64-unknown-linux-gnu
2021-06-02 01:30:07 +02:00
2021-03-19 15:09:56 +01:00
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52805
2021-03-19 15:09:56 +01:00
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52810
2021-03-19 15:09:56 +01:00
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52811
2021-03-19 15:09:56 +01:00
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52820
2021-03-19 15:09:56 +01:00
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52832
2021-03-19 15:09:56 +01:00
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52833
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52840
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52840,log
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52840,defmt
2021-06-02 01:30:07 +02:00
- package: examples/nrf
target: thumbv7em-none-eabi
- package: examples/rp
2021-03-29 04:32:46 +02:00
target: thumbv6m-none-eabi
2021-06-02 01:30:07 +02:00
2021-05-17 03:01:30 +02:00
- package: embassy-stm32
target: thumbv7em-none-eabi
2021-05-17 03:28:24 +02:00
features: stm32f411ce,defmt
2021-05-17 03:01:30 +02:00
- package: embassy-stm32
target: thumbv7em-none-eabi
2021-05-17 03:25:30 +02:00
features: stm32f429zi,log
- package: embassy-stm32
target: thumbv7em-none-eabi
features: stm32h755zi_cm7,defmt
2021-05-17 03:28:24 +02:00
- package: embassy-stm32
target: thumbv7em-none-eabi
features: stm32l476vg,defmt
2021-05-21 18:52:53 +02:00
- package: embassy-stm32
target: thumbv6m-none-eabi
features: stm32l072cz,defmt
- package: embassy-stm32
target: thumbv7m-none-eabi
features: stm32l151cb-a,defmt
2021-06-02 01:30:07 +02:00
- package: examples/stm32f4
2021-05-17 03:01:30 +02:00
target: thumbv7em-none-eabi
2021-06-08 16:41:18 +02:00
- package: examples/stm32l4
target: thumbv7em-none-eabi
2021-06-08 20:47:32 +02:00
- package: examples/stm32h7
target: thumbv7em-none-eabi
2021-06-09 15:22:52 +02:00
- package: examples/stm32l0
target: thumbv6m-none-eabi
- package: examples/stm32l1
target: thumbv7m-none-eabi
- package: examples/stm32wb55
target: thumbv7em-none-eabihf
- package: examples/stm32wl55
target: thumbv7em-none-eabihf
2021-07-15 18:50:39 +02:00
- package: examples/stm32f0
target: thumbv6m-none-eabi
2021-08-20 01:29:37 +02:00
- package: examples/stm32g0
target: thumbv6m-none-eabi
- package: examples/wasm
target: wasm32-unknown-unknown
2020-10-31 23:03:46 +01:00
steps:
2020-12-01 17:52:06 +01:00
- uses: actions/checkout@v2
2021-05-31 03:07:46 +02:00
with:
submodules: true
- uses: actions-rs/toolchain@v1
2020-12-01 17:52:06 +01:00
with:
toolchain: stable
- name: cache
id: cache-target
uses: actions/cache@v2
with:
path: target
key: ${{ runner.os }}-${{ matrix.target }}
2021-07-05 02:33:29 +02:00
# We have to append the "-D warnings" flag to .cargo/config rather than
# using the RUSTFLAGS environment variable because if we set RUSTFLAGS
# cargo will ignore the rustflags config in .cargo/config.
- name: Check
2021-07-05 02:33:29 +02:00
run: |
mkdir -p .cargo
echo -e '[target."cfg(all())"]\nrustflags = ["-D", "warnings"]' >> .cargo/config
cd ${{ matrix.package }} && RUSTFLAGS=-Dwarnings cargo check --features=${{ matrix.features }} --target=${{ matrix.target }}
2021-03-19 15:09:56 +01:00
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Check fmt
run: find -name '*.rs' | xargs rustfmt --check --skip-children --unstable-features --edition 2018
2021-06-10 03:05:44 +02:00
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Test
run: cd embassy && cargo test
2021-06-10 03:05:44 +02:00
metapac_gen:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions-rs/toolchain@v1
2021-06-10 03:05:44 +02:00
with:
toolchain: stable
2021-06-10 03:05:44 +02:00
- name: Generate pregenerated metapac
run: cd stm32-metapac-gen; cargo run --release