diff options
author | John Hodge <tpg@mutabah.net> | 2016-12-18 16:09:28 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-12-18 16:09:28 +0800 |
commit | d4d935a1f5390de5765e77d5f6c724e47213c243 (patch) | |
tree | f8240f79e0beb8b52c7d781c63212d93d9d070e0 | |
parent | ef4bae520a1d6c28685966c83c3836ab17caf49a (diff) | |
download | mrust-d4d935a1f5390de5765e77d5f6c724e47213c243.tar.gz |
Travis CI - Use gcc6 for compiling generated code
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 5289959d..0a81392f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,8 +17,8 @@ install: # Tests! (check that they parse, and keep going) script: # libstd - - 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 # Tests -# - make rust_tests-run-pass RUST_TESTS_FINAL_STAGE=expand -k +# - CC=gcc-6 make rust_tests-run-pass RUST_TESTS_FINAL_STAGE=expand -k |