diff options
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 54227982..c202a276 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,8 +17,8 @@ install: # Tests! (check that they parse, and keep going) script: # libstd - - TARGET_CC=gcc-6 make test TAIL_COUNT=2 + - CC=gcc-6 make test TAIL_COUNT=2 # rustc (not the actual binary, because that doesn't emit a file yet) - - make output/librustc_driver.hir TAIL_COUNT=2 + - CC=gcc-6 make output/librustc_driver.hir TAIL_COUNT=2 # Tests # - CC=gcc-6 make rust_tests-run-pass RUST_TESTS_FINAL_STAGE=expand -k |