Skip to content

Commit 0f742e6

Browse files
committed
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.
1 parent 8f02c42 commit 0f742e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ matrix:
2727
# OSX builders
2828
- env: >
2929
RUST_CHECK_TARGET=check
30-
RUST_CONFIGURE_ARGS=--target=x86_64-apple-darwin
30+
RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin
3131
SRC=.
3232
os: osx
3333
install: brew install ccache
3434
- env: >
3535
RUST_CHECK_TARGET=check
36-
RUST_CONFIGURE_ARGS=--target=i686-apple-darwin
36+
RUST_CONFIGURE_ARGS=--build=i686-apple-darwin
3737
SRC=.
3838
os: osx
3939
install: brew install ccache
4040
- env: >
4141
RUST_CHECK_TARGET=check
42-
RUST_CONFIGURE_ARGS=--target=x86_64-apple-darwin --disable-rustbuild
42+
RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin --disable-rustbuild
4343
SRC=.
4444
os: osx
4545
install: brew install ccache

0 commit comments

Comments
 (0)