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