Skip to content

Add linux mint builds #3263

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 86 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,16 @@ workflow:
- x86_64-linux
image: "registry.gitlab.haskell.org/ghc/ci-images/x86_64-linux-alpine3_12:$DOCKER_REV"

.x86_64-linux-mint19:
tags:
- x86_64-linux
image: "linuxmintd/mint19.3-amd64"

.x86_64-linux-mint20:
tags:
- x86_64-linux
image: "linuxmintd/mint20.2-amd64"


######################
# aarch64 linux deb10
Expand Down Expand Up @@ -267,6 +277,82 @@ test-x86_64-linux-centos7:
before_script:
- sudo yum install -y tree

###########################
# x86_64 linux Mint19.3
###########################

build-x86_64-linux-mint19:
extends:
- .build
- .x86_64-linux-mint19
before_script:
- apt update
- apt install -y build-essential curl libffi-dev libffi6 libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5 zlib1g-dev patchelf tree
variables:
ADD_CABAL_ARGS: "--enable-split-sections"

tar-x86_64-linux-mint19:
extends:
- .artifacts
- .x86_64-linux-mint19
stage: tar
needs: ["build-x86_64-linux-mint19"]
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-mint19.3-linux
TARBALL_EXT: tar.xz
before_script:
- apt update
- apt install -y make tar xz-utils curl

test-x86_64-linux-mint19:
extends:
- .test
- .x86_64-linux-mint19
needs: ["tar-x86_64-linux-mint19"]
before_script:
- apt update
- apt install -y tree patchelf make curl build-essential

###########################
# x86_64 linux Mint20
###########################

build-x86_64-linux-mint20:
extends:
- .build
- .x86_64-linux-mint20
before_script:
- apt update
- apt install -y build-essential curl libffi-dev libffi7 libgmp-dev libgmp10 libncurses-dev libncurses5 libtinfo5 zlib1g-dev patchelf tree
variables:
ADD_CABAL_ARGS: "--enable-split-sections"

tar-x86_64-linux-mint20:
extends:
- .artifacts
- .x86_64-linux-mint20
stage: tar
needs: ["build-x86_64-linux-mint20"]
script:
- ./.gitlab/tar.sh
variables:
TARBALL_ARCHIVE_SUFFIX: x86_64-mint20.2-linux
TARBALL_EXT: tar.xz
before_script:
- apt update
- apt install -y make tar xz-utils curl

test-x86_64-linux-mint20:
extends:
- .test
- .x86_64-linux-mint20
needs: ["tar-x86_64-linux-mint20"]
before_script:
- apt update
- apt install -y tree patchelf make curl build-essential

######################
# x86_64 linux fedora33
######################
Expand Down