[commit: ghc] wip/windows-32bit: gitlab-ci: Do full `perf` build when building Windows releases (f7b390d)

git at git.haskell.org git at git.haskell.org
Thu Mar 21 17:01:48 UTC 2019


Repository : ssh://git@git.haskell.org/ghc

On branch  : wip/windows-32bit
Link       : http://ghc.haskell.org/trac/ghc/changeset/f7b390da51550e0e5020143b9dd2d3701d84b427/ghc

>---------------------------------------------------------------

commit f7b390da51550e0e5020143b9dd2d3701d84b427
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Fri Mar 8 10:05:45 2019 -0500

    gitlab-ci: Do full `perf` build when building Windows releases


>---------------------------------------------------------------

f7b390da51550e0e5020143b9dd2d3701d84b427
 .gitlab-ci.yml | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0740047..f6a5998 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -471,13 +471,14 @@ nightly-i386-windows-hadrian:
   # due to #16084
   allow_failure: true
   variables:
+    BUILD_FLAVOUR: "quick"
     GHC_VERSION: "8.6.2"
     BIN_DIST_PREP_TAR_COMP: "bindistprep/ghc-x86_64-mingw32.tar.xz"
   script:
     - |
       python boot
       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 "echo include mk/flavours/${BUILD_FLAVOUR}.mk > mk/build.mk"
     - bash -c "PATH=`pwd`/toolchain/bin:$PATH make -j`mk/detect-cpu-count.sh`"
     - bash -c "PATH=`pwd`/toolchain/bin:$PATH make binary-dist TAR_COMP_OPTS=-1"
     - bash -c 'make V=0 test THREADS=`mk/detect-cpu-count.sh` JUNIT_FILE=../../junit.xml'
@@ -499,12 +500,22 @@ validate-x86_64-windows:
   cache:
     key: x86_64-windows
 
+# Normal Windows validate builds are profiled; that won't do for releases.
+release-x86_64-windows:
+  extends: validate-x86_64-windows
+  variables:
+    MSYSTEM: MINGW64
+    BUILD_FLAVOUR: "perf"
+  only:
+    - tags
+
 release-i386-windows:
   extends: .build-windows-make
   only:
     - tags
   variables:
     MSYSTEM: MINGW32
+    BUILD_FLAVOUR: "perf"
   cache:
     key: i386-windows
 



More information about the ghc-commits mailing list