mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Also check examples which require __v7
This commit is contained in:
parent
9a33457c82
commit
80b6bb9926
1 changed files with 7 additions and 2 deletions
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
|
@ -134,11 +134,16 @@ jobs:
|
|||
target: ${{ matrix.target }}
|
||||
override: true
|
||||
components: llvm-tools-preview
|
||||
- uses: actions-rs/cargo@v1
|
||||
|
||||
- name: Check the examples
|
||||
if: matrix.target == 'thumbv7m-none-eabi'
|
||||
env:
|
||||
V7: __v7
|
||||
uses: actions-rs/cargo@v1
|
||||
with:
|
||||
use-cross: false
|
||||
command: check
|
||||
args: --examples --target=${{ matrix.target }} --features __min_r1_43
|
||||
args: --examples --target=${{ matrix.target }} --features __min_r1_43,${{ env.V7 }}
|
||||
|
||||
# Use precompiled binutils
|
||||
- name: cargo install cargo-binutils
|
||||
|
|
Loading…
Reference in a new issue