X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=.travis.yml;h=49a8d5b66c35697533f5ded76bdb9ea022aef70d;hb=97df8676b7fb856e396057b8ecfc231489456b10;hp=7a8772d7abd63556a991e2dd2f10b8c0ccdbba69;hpb=2210e9a6a99c4241d82e85ca71fd291d5ef91c7f;p=rust.git diff --git a/.travis.yml b/.travis.yml index 7a8772d7abd..49a8d5b66c3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,7 +36,7 @@ matrix: if: branch = try OR branch = auto - env: > - RUST_CHECK_TARGET=dist + SCRIPT="./x.py dist" RUST_CONFIGURE_ARGS="--enable-extended --enable-profiler --enable-lldb --set rust.jemalloc" SRC=. DEPLOY_ALT=1 @@ -59,7 +59,7 @@ matrix: # Note that the compiler is compiled to target 10.8 here because the Xcode # version that we're using, 8.2, cannot compile LLVM for OSX 10.7. - env: > - RUST_CHECK_TARGET=check + SCRIPT="./x.py test" RUST_CONFIGURE_ARGS="--build=x86_64-apple-darwin --enable-sanitizers --enable-profiler --set rust.jemalloc" SRC=. RUSTC_RETRY_LINKER_ON_SEGFAULT=1 @@ -73,7 +73,7 @@ matrix: if: branch = auto - env: > - RUST_CHECK_TARGET=check + SCRIPT="./x.py test" RUST_CONFIGURE_ARGS="--build=i686-apple-darwin --set rust.jemalloc" SRC=. RUSTC_RETRY_LINKER_ON_SEGFAULT=1 @@ -93,7 +93,7 @@ matrix: # `xcode8.2` image as above. That's because we want to build releases for # OSX 10.7 and `xcode7` is the latest Xcode able to compile LLVM for 10.7. - env: > - RUST_CHECK_TARGET=dist + SCRIPT="./x.py dist" RUST_CONFIGURE_ARGS="--build=i686-apple-darwin --enable-full-tools --enable-profiler --enable-lldb --set rust.jemalloc" SRC=. DEPLOY=1 @@ -108,7 +108,7 @@ matrix: if: branch = auto - env: > - RUST_CHECK_TARGET=dist + SCRIPT="./x.py dist" RUST_CONFIGURE_ARGS="--target=aarch64-apple-ios,armv7-apple-ios,armv7s-apple-ios,i386-apple-ios,x86_64-apple-ios --enable-full-tools --enable-sanitizers --enable-profiler --enable-lldb --set rust.jemalloc" SRC=. DEPLOY=1 @@ -260,7 +260,7 @@ install: export PATH=$PATH:$HOME ;; osx) - if [[ "$RUST_CHECK_TARGET" == dist ]]; then + if [[ "$SCRIPT" == "./x.py dist" ]]; then travis_retry brew update && travis_retry brew install xz && travis_retry brew install swig;