embassy/.github/workflows/rust.yml

129 lines
3.7 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,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: stm32l053r8,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/stm32wb55
target: thumbv7em-none-eabihf
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
2020-12-01 17:52:06 +01:00
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
2021-03-19 15:09:56 +01: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 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: for i in embassy-*; do (cd $i; cargo fmt -- --check); done
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
with:
toolchain: stable
- name: Generate pregenerated metapac
run: cd stm32-metapac/gen; cargo run --release