From 80b6bb9926a5d2b86d9aa6a08b17d475b822dc16 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Wed, 23 Sep 2020 13:51:07 +0000 Subject: [PATCH] Also check examples which require __v7 --- .github/workflows/build.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index dad7952486..c687115389 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