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
|
|
|
|
features: log
|
|
|
|
- package: embassy
|
|
|
|
target: thumbv7em-none-eabi
|
|
|
|
features: defmt
|
|
|
|
- package: embassy
|
|
|
|
target: thumbv6m-none-eabi
|
|
|
|
features: defmt
|
2021-03-19 16:46:13 +01:00
|
|
|
- package: embassy-nrf-examples
|
|
|
|
target: thumbv7em-none-eabi
|
2021-03-19 15:09:56 +01:00
|
|
|
- package: embassy-nrf
|
|
|
|
target: thumbv7em-none-eabi
|
|
|
|
features: 52810
|
|
|
|
- package: embassy-nrf
|
|
|
|
target: thumbv7em-none-eabi
|
|
|
|
features: 52832
|
|
|
|
- package: embassy-nrf
|
|
|
|
target: thumbv7em-none-eabi
|
|
|
|
features: 52833
|
|
|
|
- package: embassy-nrf
|
|
|
|
target: thumbv7em-none-eabi
|
|
|
|
features: 52840
|
|
|
|
- package: embassy-nrf
|
|
|
|
target: thumbv7em-none-eabi
|
|
|
|
features: 52840,log
|
|
|
|
- package: embassy-nrf
|
|
|
|
target: thumbv7em-none-eabi
|
|
|
|
features: 52840,defmt
|
2021-03-30 17:05:52 +02:00
|
|
|
- package: embassy-stm32-examples
|
2021-03-19 15:09:56 +01:00
|
|
|
target: thumbv7em-none-eabi
|
|
|
|
features: stm32f405
|
2021-03-30 17:05:52 +02:00
|
|
|
- package: embassy-stm32
|
2021-03-19 15:09:56 +01:00
|
|
|
target: thumbv7em-none-eabi
|
|
|
|
features: stm32f405
|
2021-03-30 17:05:52 +02:00
|
|
|
- package: embassy-stm32
|
2021-03-21 00:13:21 +01:00
|
|
|
target: thumbv7em-none-eabi
|
|
|
|
features: stm32f446
|
2021-03-30 17:05:52 +02:00
|
|
|
- package: embassy-stm32
|
2021-03-19 15:09:56 +01:00
|
|
|
target: thumbv7em-none-eabi
|
|
|
|
features: stm32f405,defmt
|
2021-03-30 17:05:52 +02:00
|
|
|
- package: embassy-stm32
|
2021-03-19 15:09:56 +01:00
|
|
|
target: thumbv6m-none-eabi
|
|
|
|
features: stm32l0x2
|
2021-03-30 17:05:52 +02:00
|
|
|
- package: embassy-stm32
|
2021-03-19 15:09:56 +01:00
|
|
|
target: thumbv6m-none-eabi
|
|
|
|
features: stm32l0x2,defmt
|
2021-03-29 04:32:46 +02:00
|
|
|
- package: embassy-rp-examples
|
|
|
|
target: thumbv6m-none-eabi
|
2020-10-31 23:03:46 +01:00
|
|
|
|
|
|
|
steps:
|
2020-12-01 17:52:06 +01:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
2021-05-08 05:48:47 +02:00
|
|
|
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 }}
|
2021-03-29 21:46:51 +02:00
|
|
|
- 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:
|
2021-05-08 05:48:47 +02:00
|
|
|
toolchain: stable
|
2021-03-29 22:31:26 +02:00
|
|
|
- name: Check fmt
|
|
|
|
run: for i in embassy-*; do (cd $i; cargo fmt -- --check); done
|