embassy/.github/workflows/rust.yml

111 lines
3.1 KiB
YAML
Raw Normal View History

2020-10-31 22:03:46 +00:00
name: Rust
on:
push:
2020-12-01 16:52:06 +00:00
branches: [master]
2020-10-31 22:03:46 +00:00
pull_request:
2020-12-01 16:52:06 +00:00
branches: [master]
2020-10-31 22:03:46 +00:00
env:
CARGO_TERM_COLOR: always
jobs:
2021-03-19 14:09:56 +00:00
ci:
2020-10-31 22:03:46 +00:00
runs-on: ubuntu-latest
2021-03-19 14:09:56 +00:00
strategy:
matrix:
include:
- package: embassy
target: thumbv7em-none-eabi
- package: embassy
target: thumbv7em-none-eabi
2021-05-19 10:57:22 +00:00
features: log,executor-agnostic
2021-03-19 14:09:56 +00:00
- package: embassy
target: thumbv7em-none-eabi
features: defmt
- package: embassy
target: thumbv6m-none-eabi
features: defmt
2021-06-01 23:30:07 +00:00
- package: examples/std
2021-05-28 21:13:23 +00:00
target: x86_64-unknown-linux-gnu
2021-06-01 23:30:07 +00:00
2021-03-19 14:09:56 +00:00
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52805
2021-03-19 14:09:56 +00:00
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52810
2021-03-19 14:09:56 +00:00
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52811
2021-03-19 14:09:56 +00:00
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52820
2021-03-19 14:09:56 +00:00
- package: embassy-nrf
target: thumbv7em-none-eabi
features: nrf52832
2021-03-19 14:09:56 +00: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-01 23:30:07 +00:00
- package: examples/nrf
target: thumbv7em-none-eabi
- package: examples/rp
2021-03-29 02:32:46 +00:00
target: thumbv6m-none-eabi
2021-06-01 23:30:07 +00:00
2021-05-17 01:01:30 +00:00
- package: embassy-stm32
target: thumbv7em-none-eabi
2021-05-17 01:28:24 +00:00
features: stm32f411ce,defmt
2021-05-17 01:01:30 +00:00
- package: embassy-stm32
target: thumbv7em-none-eabi
2021-05-17 01:25:30 +00:00
features: stm32f429zi,log
- package: embassy-stm32
target: thumbv7em-none-eabi
features: stm32h755zi,defmt
2021-05-17 01:28:24 +00:00
- package: embassy-stm32
target: thumbv7em-none-eabi
features: stm32l476vg,defmt
2021-05-21 16:52:53 +00:00
- package: embassy-stm32
target: thumbv6m-none-eabi
features: stm32l053r8,defmt
2021-06-01 23:30:07 +00:00
- package: examples/stm32f4
2021-05-17 01:01:30 +00:00
target: thumbv7em-none-eabi
2021-06-08 14:41:18 +00:00
- package: examples/stm32l4
target: thumbv7em-none-eabi
2020-10-31 22:03:46 +00:00
steps:
2020-12-01 16:52:06 +00:00
- uses: actions/checkout@v2
2021-05-31 01:07:46 +00:00
with:
submodules: true
2020-12-01 16:52:06 +00:00
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
2021-03-19 14:09:56 +00:00
- name: cache
id: cache-target
uses: actions/cache@v2
with:
path: target
key: ${{ runner.os }}-${{ matrix.target }}
- name: Check
run: cd ${{ matrix.package }} && cargo check --features=${{ matrix.features }} --target=${{ matrix.target }}
2021-03-19 14:09:56 +00:00
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Check fmt
run: for i in embassy-*; do (cd $i; cargo fmt -- --check); done