Also build 32bit release artifact

This commit is contained in:
2020-04-19 19:23:54 +02:00
parent 296bbdd561
commit 1842ed464f
4 changed files with 55 additions and 11 deletions

View File

@@ -15,12 +15,21 @@ variables:
variables:
OS: "LINUX"
.alpine:
.alpine:64bit:
image: "alpine:edge"
tags:
- x86_64-linux
variables:
OS: "LINUX"
BIT: "64"
.alpine:32bit:
image: "i386/alpine:edge"
tags:
- x86_64-linux
variables:
OS: "LINUX"
BIT: "32"
.darwin:
tags:
@@ -133,15 +142,28 @@ test:freebsd:latest:
######## linux release ########
release:linux:
release:linux:64bit:
extends:
- .alpine
- .alpine:64bit
- .release_ghcup
before_script:
- ./.gitlab/before_script/linux/alpine/install_deps.sh
variables:
ARTIFACT: "x86_64-linux-ghcup"
GHC_VERSION: "8.8.3"
CABAL_VERSION: "3.2.0.0"
release:linux:32bit:
extends:
- .alpine:32bit
- .release_ghcup
before_script:
- ./.gitlab/before_script/linux/alpine/install_deps.sh
variables:
ARTIFACT: "x86_64-linux-ghcup"
GHC_VERSION: "8.8.3"
CABAL_VERSION: "3.2.0.0"
######## darwin release ########