2021-04-17 14:21:55 -05:00
|
|
|
on: [push, pull_request]
|
2021-12-13 23:52:32 +00:00
|
|
|
name: Build and Test check
|
2021-04-17 14:09:54 -05:00
|
|
|
jobs:
|
2022-08-13 17:14:18 +01:00
|
|
|
builds:
|
2022-08-26 03:42:33 +01:00
|
|
|
name: Build checks
|
2021-04-25 12:24:47 -05:00
|
|
|
runs-on: ubuntu-20.04
|
2022-08-13 17:14:18 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-08-17 22:22:36 +01:00
|
|
|
features: ["", "--features eh1_0_alpha", "--features chrono", "--features rp2040-e5"]
|
2022-08-13 17:14:18 +01:00
|
|
|
mode: ["", "--release"]
|
2021-04-17 14:09:54 -05:00
|
|
|
steps:
|
2021-04-24 20:17:42 -05:00
|
|
|
- uses: actions/checkout@v2
|
2021-04-17 14:09:54 -05:00
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
target: thumbv6m-none-eabi
|
2021-04-24 20:17:42 -05:00
|
|
|
override: true
|
|
|
|
profile: minimal
|
2022-08-26 03:42:33 +01:00
|
|
|
- name: Build workspace
|
2022-08-12 11:55:54 +01:00
|
|
|
uses: actions-rs/cargo@v1
|
2021-12-13 23:52:32 +00:00
|
|
|
with:
|
2022-01-03 22:10:51 +11:00
|
|
|
command: build
|
2022-08-13 17:14:18 +01:00
|
|
|
args: ${{ matrix.mode }} --workspace ${{ matrix.features }}
|
2022-08-26 03:42:33 +01:00
|
|
|
- name: Build workspace and examples
|
2022-08-12 11:55:54 +01:00
|
|
|
uses: actions-rs/cargo@v1
|
2021-04-24 20:17:42 -05:00
|
|
|
with:
|
2022-01-03 22:10:51 +11:00
|
|
|
command: build
|
2022-08-13 17:14:18 +01:00
|
|
|
args: ${{ matrix.mode }} --workspace --examples ${{ matrix.features }}
|
2022-08-26 03:42:33 +01:00
|
|
|
- name: List built examples and clean
|
2022-08-12 11:55:54 +01:00
|
|
|
run: rm -vrf target/thumbv6m-none-eabi/*/examples/* | sed -e "s/removed '\(.*\)'/\1/" | xargs -l basename | grep -Ev '(-|\.d)'
|
2022-08-26 03:42:33 +01:00
|
|
|
- name: Test
|
2022-08-12 11:55:54 +01:00
|
|
|
uses: actions-rs/cargo@v1
|
2021-08-11 02:53:42 +02:00
|
|
|
with:
|
|
|
|
command: test
|
2022-08-13 17:14:18 +01:00
|
|
|
args: --tests --target x86_64-unknown-linux-gnu ${{ matrix.features }}
|
2022-08-26 03:42:33 +01:00
|
|
|
- name: Test docs
|
2022-08-12 11:55:54 +01:00
|
|
|
uses: actions-rs/cargo@v1
|
2021-11-29 11:15:20 +01:00
|
|
|
with:
|
|
|
|
command: test
|
2022-08-13 17:14:18 +01:00
|
|
|
args: --doc --target x86_64-unknown-linux-gnu ${{ matrix.features }}
|
2022-08-26 03:42:33 +01:00
|
|
|
- name: Clean
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: clean
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: nightly
|
|
|
|
target: thumbv6m-none-eabi
|
|
|
|
override: true
|
|
|
|
profile: minimal
|
|
|
|
- name: Check unused deps
|
|
|
|
uses: aig787/cargo-udeps-action@v1
|
|
|
|
with:
|
|
|
|
version: latest
|
|
|
|
args: ${{ matrix.mode }} --workspace ${{ matrix.features }}
|
2022-08-13 17:14:18 +01:00
|
|
|
|