Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
Haskell Language Server
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julian Ospald
Haskell Language Server
Commits
a4b34814
Unverified
Commit
a4b34814
authored
2 years ago
by
Julian Ospald
Browse files
Options
Downloads
Patches
Plain Diff
Add linux mint builds
parent
73b02ef3
No related branches found
No related tags found
No related merge requests found
Pipeline
#57536
canceled
2 years ago
Stage: build
Stage: tar
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+86
-0
86 additions, 0 deletions
.gitlab-ci.yml
with
86 additions
and
0 deletions
.gitlab-ci.yml
+
86
−
0
View file @
a4b34814
...
...
@@ -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
...
...
@@ -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
######################
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment