diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2016-12-16 16:32:40 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2016-12-16 16:32:40 -0800 |
| commit | 0f742e600b00f5602fc2e636f14990e11dc0c6f2 (patch) | |
| tree | 14ab258b7d7adc860a820b611996811184e4cc60 | |
| parent | 8f02c429ad3e2ad687a222d1daae2e04bb9bb876 (diff) | |
| download | rust-0f742e600b00f5602fc2e636f14990e11dc0c6f2.tar.gz rust-0f742e600b00f5602fc2e636f14990e11dc0c6f2.zip | |
travis: Fix testing 32-bit OSX target
We passed --target when we meant to pass --build, meaning we tested only the standard library for 32-bit, not the whole compiler like we intended.
| -rw-r--r-- | .travis.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 996e5ec07b5..32ef4e49fc6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,19 +27,19 @@ matrix: # OSX builders - env: > RUST_CHECK_TARGET=check - RUST_CONFIGURE_ARGS=--target=x86_64-apple-darwin + RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin SRC=. os: osx install: brew install ccache - env: > RUST_CHECK_TARGET=check - RUST_CONFIGURE_ARGS=--target=i686-apple-darwin + RUST_CONFIGURE_ARGS=--build=i686-apple-darwin SRC=. os: osx install: brew install ccache - env: > RUST_CHECK_TARGET=check - RUST_CONFIGURE_ARGS=--target=x86_64-apple-darwin --disable-rustbuild + RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin --disable-rustbuild SRC=. os: osx install: brew install ccache |
