Skip to content

Commit dea7ef3

Browse files
committed
Auto merge of #38419 - alexcrichton:travis-osx-32-bit, r=brson
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.
2 parents f99d4df + 0f742e6 commit dea7ef3

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,21 +27,21 @@ 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: &osx_install_sccache >
3434
curl -L https://api.pub.build.mozilla.org/tooltool/sha512/d0025b286468cc5ada83b23d3fafbc936b9f190eaa7d4a981715b18e8e3bf720a7bcee7bfe758cfdeb8268857f6098fd52dcdd8818232692a30ce91039936596 |
3535
tar xJf - -C /usr/local/bin --strip-components=1
3636
- env: >
3737
RUST_CHECK_TARGET=check
38-
RUST_CONFIGURE_ARGS=--target=i686-apple-darwin
38+
RUST_CONFIGURE_ARGS=--build=i686-apple-darwin
3939
SRC=.
4040
os: osx
4141
install: *osx_install_sccache
4242
- env: >
4343
RUST_CHECK_TARGET=check
44-
RUST_CONFIGURE_ARGS=--target=x86_64-apple-darwin --disable-rustbuild
44+
RUST_CONFIGURE_ARGS=--build=x86_64-apple-darwin --disable-rustbuild
4545
SRC=.
4646
os: osx
4747
install: *osx_install_sccache

0 commit comments

Comments
 (0)