Skip to content

Commit 7011035

Browse files
authoredDec 24, 2018
Rollup merge of rust-lang#57010 - phansch:run_compiletest_tests_on_ci, r=kennytm
Actually run compiletest tests on CI I was assuming that rust-lang#56792 would have resulted in compiletest tests being executed on CI. However, I couldn't find any mentions of the unit test names in any CI logs. This adds the compiletest test execution to the checktools.sh script.
2 parents a0538c8 + 0493c99 commit 7011035

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/ci/docker/mingw-check/Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ RUN sh /scripts/sccache.sh
2121

2222
ENV RUN_CHECK_WITH_PARALLEL_QUERIES 1
2323
ENV SCRIPT python2.7 ../x.py check --target=i686-pc-windows-gnu --host=i686-pc-windows-gnu && \
24-
python2.7 ../x.py build --stage 0 src/tools/build-manifest
24+
python2.7 ../x.py build --stage 0 src/tools/build-manifest && \
25+
python2.7 ../x.py test --stage 0 src/tools/compiletest

0 commit comments

Comments
 (0)
Please sign in to comment.