Skip to content

Commit

Permalink
add norun build bots for mips
Browse files Browse the repository at this point in the history
  • Loading branch information
gnzlbg committed Mar 9, 2018
1 parent ffd647c commit e920364
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ matrix:
- env: TARGET=arm-unknown-linux-gnueabihf
- env: TARGET=armv7-unknown-linux-gnueabihf
- env: TARGET=aarch64-unknown-linux-gnu
- env: TARGET=mips-unknown-linux-gnu NORUN=1
- env: TARGET=mipsel-unknown-linux-gnu NORUN=1
- env: TARGET=mips64-unknown-linux-gnuabi64 NORUN=1
- env: TARGET=mips64el-unknown-linux-gnuabi64 NORUN=1

- env: TARGET=powerpc-unknown-linux-gnu
- env: TARGET=powerpc64-unknown-linux-gnu
- env: TARGET=powerpc64le-unknown-linux-gnu
Expand Down Expand Up @@ -47,7 +52,14 @@ install:

script:
- cargo generate-lockfile
- ci/run-docker.sh $TARGET $FEATURES
- |
if [ "$NORUN" == "1" ]; then
cd crates/stdsimd
cargo build --target=$TARGET
cargo build --release --target=$TARGET
else
ci/run-docker.sh $TARGET $FEATURES
fi
notifications:
email:
Expand Down

0 comments on commit e920364

Please sign in to comment.