[commit: ghc] wip/ghc-8.6-merges: Introduce i386-windows job (c0a64e7)

git at git.haskell.org git at git.haskell.org
Tue Mar 19 19:52:22 UTC 2019


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

On branch  : wip/ghc-8.6-merges
Link       : http://ghc.haskell.org/trac/ghc/changeset/c0a64e7e63bd82481612a1f1730e72cc6a6b9e42/ghc

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

commit c0a64e7e63bd82481612a1f1730e72cc6a6b9e42
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Tue Mar 19 14:25:16 2019 -0400

    Introduce i386-windows job


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

c0a64e7e63bd82481612a1f1730e72cc6a6b9e42
 .gitlab-ci.yml | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f8c7f73..20b0e1a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -399,3 +399,33 @@ validate-x86_64-windows:
       - ghc.tar.xz
       - junit.xml
 
+validate-i386-windows:
+  extends: .validate-windows
+  stage: build
+  # due to #16084
+  allow_failure: true
+  variables:
+    GHC_VERSION: "8.6.2"
+    LANG: "en_US.UTF-8"
+  script:
+    - |
+      set MSYSTEM=MINGW32
+      python boot
+      bash -c './configure --with-ghc=`pwd`/toolchain/bin/ghc --enable-tarballs-autodownload HappyCmd=`pwd`/toolchain/bin/happy AlexCmd=`pwd`/toolchain/bin/alex'
+    - 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: i386-windows
+  tags:
+    - i386-windows
+  artifacts:
+    when: always
+    reports:
+      junit: junit.xml
+    paths:
+      - ghc.tar.xz
+      - junit.xml
+



More information about the ghc-commits mailing list