[commit: ghc] wip/T15952-2: gitlab: Collect artifacts on Windows (a90a2ae)
git at git.haskell.org
git at git.haskell.org
Thu Jan 24 11:55:03 UTC 2019
Repository : ssh://git@git.haskell.org/ghc
On branch : wip/T15952-2
Link : http://ghc.haskell.org/trac/ghc/changeset/a90a2aea94b306cf557e74c4c3ed65959d05c20c/ghc
>---------------------------------------------------------------
commit a90a2aea94b306cf557e74c4c3ed65959d05c20c
Author: Ben Gamari <ben at smart-cactus.org>
Date: Tue Jan 15 23:21:39 2019 -0500
gitlab: Collect artifacts on Windows
>---------------------------------------------------------------
a90a2aea94b306cf557e74c4c3ed65959d05c20c
.gitlab-ci.yml | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4f426f3..9512380 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]
# ~~~~~~~~~~~~~~~~~~~~~~~~~
More information about the ghc-commits
mailing list