[commit: ghc] wip/collect-windows-artifacts: gitlab: Collect artifacts on Windows (051da12)
git at git.haskell.org
git at git.haskell.org
Thu Jan 17 16:21:26 UTC 2019
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/collect-windows-artifacts
Link : http://ghc.haskell.org/trac/ghc/changeset/051da1265b0f016e953d550db70ee835bb481705/ghc
>---------------------------------------------------------------
commit 051da1265b0f016e953d550db70ee835bb481705
Author: Ben Gamari <ben at smart-cactus.org>
Date: Tue Jan 15 23:21:39 2019 -0500
gitlab: Collect artifacts on Windows
>---------------------------------------------------------------
051da1265b0f016e953d550db70ee835bb481705
.gitlab-ci.yml | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 162c19c..e7c11fb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -363,11 +363,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]
# ~~~~~~~~~~~~~~~~~~~~~~~~~
More information about the ghc-commits
mailing list