diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-09-25 12:43:44 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-25 12:43:44 +0000 |
| commit | c054231823a997a1c473549cc3ef20463ca47317 (patch) | |
| tree | ca525ad83507ad9ad0050cc16015a20f22e9bbf6 /.github | |
| parent | 9a33457c82ddc5a7c1243dfc784d818e60e34023 (diff) | |
| parent | 80b6bb9926a5d2b86d9aa6a08b17d475b822dc16 (diff) | |
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>
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dad7952..c687115 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 |
