mirror of
https://github.com/italicsjenga/rp-hal-boards.git
synced 2024-12-24 05:01:31 +11:00
55 lines
2 KiB
YAML
55 lines
2 KiB
YAML
on: [push, pull_request]
|
|
name: Build and Test check
|
|
jobs:
|
|
check:
|
|
name: cargo-check
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
target: thumbv6m-none-eabi
|
|
override: true
|
|
profile: minimal
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
args: --workspace
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
args: --workspace --examples
|
|
- run: echo "Debug examples built:" && ls target/thumbv6m-none-eabi/debug/examples/ |grep -v '-' |grep -v '\.d'
|
|
- run: rm target/thumbv6m-none-eabi/debug/examples/ -rf
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
args: --workspace --examples --features eh1_0_alpha
|
|
- run: echo "Debug eh1_0 examples built:" && ls target/thumbv6m-none-eabi/debug/examples/ |grep -v '-' |grep -v '\.d'
|
|
- run: rm target/thumbv6m-none-eabi/debug/examples/ -rf
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
args: --release --workspace --examples
|
|
- run: echo "Release examples built:" && ls target/thumbv6m-none-eabi/release/examples/ |grep -v '-' |grep -v '\.d'
|
|
- run: rm target/thumbv6m-none-eabi/release/examples/ -rf
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: build
|
|
args: --release --workspace --examples --features eh1_0_alpha
|
|
- run: echo "Release eh1_0 examples built:" && ls target/thumbv6m-none-eabi/release/examples/ |grep -v '-' |grep -v '\.d'
|
|
- run: rm target/thumbv6m-none-eabi/release/examples/ -rf
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
args: --doc --target x86_64-unknown-linux-gnu
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
args: --doc --target x86_64-unknown-linux-gnu --features chrono
|
|
- uses: actions-rs/cargo@v1
|
|
with:
|
|
command: test
|
|
args: --tests --target x86_64-unknown-linux-gnu
|