We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98f8938 commit 1d1ad7cCopy full SHA for 1d1ad7c
.github/workflows/ci.yaml
@@ -51,6 +51,7 @@ jobs:
51
- beta
52
- nightly
53
- 1.57.0 # MSRV
54
+ - thumbv6m-none-eabi # Non Arc target
55
56
name: tests/${{ matrix.rust }}
57
steps:
scripts/all-tests.sh
@@ -6,6 +6,11 @@ set -e
6
FEATURES=$1
7
CHANNEL=$2
8
9
+if [ "$CHANNEL" = "thumbv6m-none-eabi" ]; then
10
+ cargo build --no-default-features --features critical-section
11
+ exit 1;
12
+fi
13
+
14
if [ "$CHANNEL" = "1.57.0" ]; then
15
cargo update --package openblas-src --precise 0.10.5
16
cargo update --package openblas-build --precise 0.10.5
0 commit comments