File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,10 @@ matrix:
12
12
- env : TARGET=arm-unknown-linux-gnueabihf
13
13
- env : TARGET=armv7-unknown-linux-gnueabihf
14
14
- env : TARGET=aarch64-unknown-linux-gnu
15
+ - env : TARGET=mips-unknown-linux-gnu NORUN=1
16
+ - env : TARGET=mipsel-unknown-linux-gnu NORUN=1
17
+ - env : TARGET=mips64-unknown-linux-gnuabi64 NORUN=1
18
+ - env : TARGET=mips64el-unknown-linux-gnuabi64 NORUN=1
15
19
- env : TARGET=powerpc-unknown-linux-gnu
16
20
- env : TARGET=powerpc64-unknown-linux-gnu
17
21
- env : TARGET=powerpc64le-unknown-linux-gnu
@@ -60,7 +64,14 @@ install:
60
64
61
65
script :
62
66
- cargo generate-lockfile
63
- - ci/run-docker.sh $TARGET $FEATURES
67
+ - |
68
+ if [ "$NORUN" == "1" ]; then
69
+ cd crates/stdsimd
70
+ cargo build --target=$TARGET
71
+ cargo build --release --target=$TARGET
72
+ else
73
+ ci/run-docker.sh $TARGET $FEATURES
74
+ fi
64
75
65
76
notifications :
66
77
email :
You can’t perform that action at this time.
0 commit comments