We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6baf056 commit 9b935e5Copy full SHA for 9b935e5
.github/workflows/ci.yml
@@ -30,6 +30,7 @@ jobs:
30
target: x86_64-unknown-linux-gnu
31
args: --all-features
32
- target: thumbv7m-none-eabi
33
+ test-target: arm-unknown-linux-gnueabi
34
args: --no-default-features --features=alloc
35
exclude:
36
- rust: 1.36.0
@@ -59,12 +60,12 @@ jobs:
59
60
with:
61
use-cross: true
62
command: test
- args: --target ${{ matrix.target }} --verbose ${{ matrix.args }}
63
+ args: --target ${{ matrix.test-target || matrix.target }} --verbose ${{ matrix.args }}
64
65
- name: Bench
66
uses: actions-rs/cargo@v1
67
68
69
command: bench
- args: --target ${{ matrix.target }} --verbose --no-run ${{ matrix.args }}
70
+ args: --target ${{ matrix.test-target || matrix.target }} --verbose --no-run ${{ matrix.args }}
71
if: matrix.rust == 'nightly'
0 commit comments