diff options
author | Ben Gamari <ben@smart-cactus.org> | 2019-01-15 23:21:39 -0500 |
---|---|---|
committer | Ben Gamari <ben@well-typed.com> | 2019-01-23 14:07:28 -0500 |
commit | a90a2aea94b306cf557e74c4c3ed65959d05c20c (patch) | |
tree | ac312b130d020b23a40c14e4fc6fcaa7f51b2871 /.gitlab-ci.yml | |
parent | cd45f8c471bb6901ac89babe98fca8e81f430d26 (diff) | |
download | haskell-a90a2aea94b306cf557e74c4c3ed65959d05c20c.tar.gz |
gitlab: Collect artifacts on Windows
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4f426f385f..9512380995 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -361,11 +361,21 @@ validate-x86_64-windows: bash -c './configure --enable-tarballs-autodownload GHC=`pwd`/toolchain/bin/ghc HAPPY=`pwd`/toolchain/bin/happy ALEX=`pwd`/toolchain/bin/alex' - bash -c "echo include mk/flavours/quick.mk > mk/build.mk" - bash -c "PATH=`pwd`/toolchain/bin:$PATH make -j`mk/detect-cpu-count.sh`" + - | + bash -c "make binary-dist TAR_COMP_OPTS=-1" + mv ghc-*.tar.xz ghc.tar.xz - bash -c 'make V=0 test THREADS=`mk/detect-cpu-count.sh` JUNIT_FILE=../../junit.xml' cache: key: x86_64-windows tags: - x86_64-windows + artifacts: + when: always + reports: + junit: junit.xml + paths: + - ghc.tar.xz + - junit.xml # Note [Cleanup on Windows] # ~~~~~~~~~~~~~~~~~~~~~~~~~ |