diff options
author | John Hodge <tpg@mutabah.net> | 2016-11-26 13:52:30 +0800 |
---|---|---|
committer | John Hodge <tpg@mutabah.net> | 2016-11-26 13:52:30 +0800 |
commit | 2f1e41b40f3546c300736b5b197b1e12815e0b27 (patch) | |
tree | 863402289f7458bb1a2e3917ecf956797d589937 | |
parent | c90a3165acf8dd41b6b3177d5f5768f4df73c698 (diff) | |
download | mrust-2f1e41b40f3546c300736b5b197b1e12815e0b27.tar.gz |
Travis CI - add librustc_driver now that it compiles
-rw-r--r-- | .travis.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 0f7d4819..a0bc2f7a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,9 @@ install: # Tests! (check that they parse, and keep going) script: +# libstd and hello_world - make test TAIL_COUNT=2 - - make output/librustc_typeck.hir output/librustc_mir.hir output/librustc_trans.hir output/libsyntax_ext.hir 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 |