Browse Source

Fix release builds

tags/v0.1.5-alpha4
Julian Ospald 4 years ago
parent
commit
2e28b0d00f
No known key found for this signature in database GPG Key ID: 511B62C09D50CD28
2 changed files with 3 additions and 1 deletions
  1. +1
    -1
      .gitlab-ci.yml
  2. +2
    -0
      .gitlab/script/ghcup_release.sh

+ 1
- 1
.gitlab-ci.yml View File

@@ -161,7 +161,7 @@ release:linux:32bit:
before_script:
- ./.gitlab/before_script/linux/alpine/install_deps.sh
variables:
ARTIFACT: "x86_64-linux-ghcup"
ARTIFACT: "i386-linux-ghcup"
GHC_VERSION: "8.8.3"
CABAL_VERSION: "3.2.0.0"



+ 2
- 0
.gitlab/script/ghcup_release.sh View File

@@ -15,6 +15,8 @@ ecabal update

if [ "${OS}" = "LINUX" ] ; then
ecabal build -w ghc-${GHC_VERSION} -fcurl --ghc-options='-split-sections -optl-static'
elif [ "${OS}" = "FREEBSD" ] ; then
ecabal build -w ghc-${GHC_VERSION} -fcurl --ghc-options='-split-sections'
else
ecabal build -w ghc-${GHC_VERSION} -fcurl
fi


Loading…
Cancel
Save