embassy/.github/workflows/rust.yml

110 lines
2.9 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
features: log
- package: embassy
target: thumbv7em-none-eabi
features: defmt
- package: embassy
target: thumbv6m-none-eabi
features: defmt
# - package: embassy-nrf-examples
# target: thumbv7em-none-eabi
- 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
- package: embassy-stm32f4-examples
target: thumbv7em-none-eabi
features: stm32f405
- package: embassy-stm32f4
target: thumbv7em-none-eabi
features: stm32f405
- package: embassy-stm32f4
target: thumbv7em-none-eabi
features: stm32f405,defmt
- package: embassy-stm32l0
target: thumbv6m-none-eabi
features: stm32l0x2
- package: embassy-stm32l0
target: thumbv6m-none-eabi
features: stm32l0x2,defmt
2020-10-31 22:03:46 +00:00
steps:
2020-12-01 16:52:06 +00:00
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
2021-03-19 14:09:56 +00:00
target: ${{ matrix.target }}
components: rust-src, rustfmt
2020-12-01 16:52:06 +00:00
override: true
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 }}
- uses: actions-rs/cargo@v1
with:
command: check
args: --package ${{ matrix.package }} --features=${{ matrix.features }}
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rustfmt
override: true
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
nrf_examples:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: rust-src, rustfmt
target: thumbv7em-none-eabi
override: true
2020-12-01 16:52:06 +00:00
- name: Build
2021-03-02 20:14:58 +00:00
run: ./ci.sh