Fix release builds

This commit is contained in:
Julian Ospald 2020-04-27 16:23:44 +02:00
父節點 ed4ff15f96
當前提交 2e28b0d00f
沒有發現已知的金鑰在資料庫的簽署中
GPG Key ID: 511B62C09D50CD28
共有 2 個文件被更改,包括 3 次插入1 次删除

查看文件

@ -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"

查看文件

@ -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