Skip to content
Snippets Groups Projects
Commit d1eabe69 authored by Marco A L Barbosa's avatar Marco A L Barbosa
Browse files

Enable x86_64-unknown-linux-gnux32 on CI

parent 0ee3935e
No related branches found
No related tags found
No related merge requests found
...@@ -7,8 +7,8 @@ services: ...@@ -7,8 +7,8 @@ services:
install: install:
- if [ -z "$NO_ADD" ]; then rustup target add $TARGET; fi - if [ -z "$NO_ADD" ]; then rustup target add $TARGET; fi
script: script:
- cargo build - cargo build $OPT
- cargo build --no-default-features - cargo build $OPT --no-default-features
- cargo generate-lockfile --manifest-path libc-test/Cargo.toml - cargo generate-lockfile --manifest-path libc-test/Cargo.toml
- if [[ $TRAVIS_OS_NAME = "linux" ]]; then - if [[ $TRAVIS_OS_NAME = "linux" ]]; then
sh ci/run-docker.sh $TARGET; sh ci/run-docker.sh $TARGET;
...@@ -93,6 +93,9 @@ matrix: ...@@ -93,6 +93,9 @@ matrix:
env: TARGET=x86_64-apple-darwin NO_ADD=1 env: TARGET=x86_64-apple-darwin NO_ADD=1
osx_image: xcode8.3 osx_image: xcode8.3
rust: nightly rust: nightly
# not available on stable
- env: TARGET=x86_64-unknown-linux-gnux32 OPT="--release"
rust: nightly
# QEMU based targets that compile in an emulator # QEMU based targets that compile in an emulator
- env: TARGET=x86_64-unknown-freebsd - env: TARGET=x86_64-unknown-freebsd
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment