mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Merge #366
366: Also check examples which require __v7 r=korken89 a=AfoHT This will currently fail similarly like in #364 which affects all examples using schedule But this is required to fully check all examples. Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
This commit is contained in:
commit
c054231823
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