diff options
author | 2020-09-23 13:51:07 +0000 | |
---|---|---|
committer | 2020-09-25 05:23:55 +0000 | |
commit | 80b6bb9926a5d2b86d9aa6a08b17d475b822dc16 (patch) | |
tree | ca525ad83507ad9ad0050cc16015a20f22e9bbf6 | |
parent | 9a33457c82ddc5a7c1243dfc784d818e60e34023 (diff) | |
download | rtic-80b6bb9926a5d2b86d9aa6a08b17d475b822dc16.tar.gz rtic-80b6bb9926a5d2b86d9aa6a08b17d475b822dc16.tar.zst rtic-80b6bb9926a5d2b86d9aa6a08b17d475b822dc16.zip |
Also check examples which require __v7
Diffstat (limited to '')
-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 dad79524..c6871153 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 |