From 100cc756faa4468ed6950116bae30609c1c3468b Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@smart-cactus.org> Date: Fri, 22 Nov 2019 12:57:56 -0500 Subject: [PATCH] gitlab-ci: Fix Windows bindist collection Apparently variable interpolation in the `artifacts.paths` key of `gitlab-ci.yml` doesn't work on Windows as it does on WIndows. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0383950147e5..53c811c48918 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -836,7 +836,7 @@ nightly-i386-windows-hadrian: reports: junit: junit.xml paths: - - $BIN_DIST_PREP_TAR_COMP + - "ghc-x86_64-mingw32.tar.xz" - junit.xml validate-x86_64-windows: -- GitLab