Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
U
unix
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Glasgow Haskell Compiler
Packages
unix
Commits
81ebaf94
Commit
81ebaf94
authored
5 months ago
by
Julian Ospald
Browse files
Options
Downloads
Patches
Plain Diff
Use ghcup-setup in CI
parent
dcf19781
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/scripts/env.sh
+0
-31
0 additions, 31 deletions
.github/scripts/env.sh
.github/workflows/ci.yml
+48
-28
48 additions, 28 deletions
.github/workflows/ci.yml
with
48 additions
and
59 deletions
.github/scripts/env.sh
deleted
100755 → 0
+
0
−
31
View file @
dcf19781
#!/bin/sh
if
[
"
${
RUNNER_OS
}
"
=
"Windows"
]
;
then
ext
=
".exe"
else
ext
=
''
fi
export
DEBIAN_FRONTEND
=
noninteractive
export
TZ
=
Asia/Singapore
export
OS
=
"
$RUNNER_OS
"
export
PATH
=
"
$HOME
/.local/bin:
$PATH
"
if
[
"
${
RUNNER_OS
}
"
=
"Windows"
]
;
then
# on windows use pwd to get unix style path
CI_PROJECT_DIR
=
"
$(
pwd
)
"
export
CI_PROJECT_DIR
export
GHCUP_INSTALL_BASE_PREFIX
=
"/c"
export
GHCUP_BIN
=
"
$GHCUP_INSTALL_BASE_PREFIX
/ghcup/bin"
export
PATH
=
"
$GHCUP_BIN
:
$PATH
"
export
CABAL_DIR
=
"C:
\\
Users
\\
runneradmin
\\
AppData
\\
Roaming
\\
cabal"
else
export
CI_PROJECT_DIR
=
"
${
GITHUB_WORKSPACE
}
"
export
GHCUP_INSTALL_BASE_PREFIX
=
"
$CI_PROJECT_DIR
"
export
GHCUP_BIN
=
"
$GHCUP_INSTALL_BASE_PREFIX
/.ghcup/bin"
export
PATH
=
"
$GHCUP_BIN
:
$PATH
"
export
CABAL_DIR
=
"
$CI_PROJECT_DIR
/cabal"
export
CABAL_CACHE
=
"
$CI_PROJECT_DIR
/cabal-cache"
fi
This diff is collapsed.
Click to expand it.
.github/workflows/ci.yml
+
48
−
28
View file @
81ebaf94
...
...
@@ -28,9 +28,14 @@ jobs:
ghc
:
'
8.6'
steps
:
-
uses
:
actions/checkout@v4
-
name
:
Install GHCup
uses
:
haskell/ghcup-setup@v1
-
name
:
Setup toolchain
run
:
|
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_INSTALL_NO_STACK=1 BOOTSTRAP_HASKELL_GHC_VERSION=${{ matrix.ghc }} BOOTSTRAP_HASKELL_ADJUST_BASHRC=yes sh
ghcup install ghc --set ${{ matrix.ghc }}
ghcup install cabal --set latest
-
if
:
runner.os == 'macOS'
name
:
Install system deps via brew
...
...
@@ -46,7 +51,6 @@ jobs:
restore-keys
:
${{ runner.os }}-${{ matrix.ghc }}-
-
name
:
Build
run
:
|
. ~/.ghcup/env
ghc --version
cabal --version
cabal update
...
...
@@ -58,7 +62,6 @@ jobs:
cabal test all --test-show-details=direct
-
name
:
Haddock
run
:
|
. ~/.ghcup/env
cabal haddock --disable-documentation
redhat-ubi9
:
...
...
@@ -66,14 +69,22 @@ jobs:
container
:
image
:
redhat/ubi9:latest
steps
:
-
name
:
Install
-
name
:
Install
prerequisites
run
:
|
yum install -y gcc gmp gmp-devel make ncurses xz perl autoconf
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_GHC_VERSION=9.4.8 sh
-
name
:
Install GHCup
uses
:
haskell/ghcup-setup@v1
-
name
:
Setup toolchain
run
:
|
ghcup install ghc --set latest
ghcup install cabal --set latest
-
uses
:
actions/checkout@v4
-
name
:
Test
run
:
|
source ~/.ghcup/env
cabal --version
cabal update
autoreconf --version
...
...
@@ -85,14 +96,21 @@ jobs:
container
:
image
:
fedora:37
steps
:
-
name
:
Install
-
name
:
Install
prerequisites
run
:
|
dnf install -y gcc gmp gmp-devel make ncurses ncurses-compat-libs xz perl autoconf
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 sh
-
name
:
Install GHCup
uses
:
haskell/ghcup-setup@v1
-
name
:
Setup toolchain
run
:
|
ghcup install ghc --set latest
ghcup install cabal --set latest
-
uses
:
actions/checkout@v4
-
name
:
Test
run
:
|
source ~/.ghcup/env
cabal --version
cabal update
autoreconf --version
...
...
@@ -102,23 +120,14 @@ jobs:
i386
:
runs-on
:
ubuntu-latest
container
:
image
:
i386/ubuntu:bionic
steps
:
-
name
:
Install
run
:
|
apt-get update -y
apt-get install -y autoconf build-essential zlib1g-dev libgmp-dev curl
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_INSTALL_NO_STACK=1 sh
-
uses
:
actions/checkout@v1
-
name
:
Test
run
:
|
source ~/.ghcup/env
cabal --version
cabal update
autoreconf --version
autoreconf -i
cabal v2-test --constraint 'optparse-applicative -process' --constraint 'QuickCheck +old-random' --constraint 'tasty -unix' all
-
name
:
Checkout code
uses
:
actions/checkout@v4
-
name
:
Run build (32 bit linux)
uses
:
docker://hasufell/i386-alpine-haskell:3.12
with
:
args
:
sh -c "apk update && apk add --no-cache autoconf automake make && cabal update && autoreconf --version && autoreconf -i && cabal v2-test --constraint 'optparse-applicative -process' --constraint 'QuickCheck +old-random' --constraint 'tasty -unix' all"
arm
:
runs-on
:
[
self-hosted
,
Linux
,
ARM64
]
...
...
@@ -161,14 +170,25 @@ jobs:
-
name
:
Checkout code
uses
:
actions/checkout@v4
-
name
:
Install prerequisites
run
:
|
sudo pkg install -y curl gcc gmp gmake ncurses perl5 libffi libiconv git bash misc/compat10x misc/compat11x misc/compat12x gmake autoconf
-
name
:
Install GHCup
uses
:
haskell/ghcup-setup@v1
-
name
:
Setup toolchain
run
:
|
ghcup install ghc --set ${{ matrix.ghc }}
ghcup install cabal --set latest
-
name
:
Run build
run
:
|
pkg install -y curl gcc gmp gmake ncurses perl5 libffi libiconv git bash misc/compat10x misc/compat11x misc/compat12x gmake autoconf
. .github/scripts/env.sh
curl --proto '=https' --tlsv1.2 -sSf https://get-ghcup.haskell.org | BOOTSTRAP_HASKELL_NONINTERACTIVE=1 BOOTSTRAP_HASKELL_INSTALL_NO_STACK=1 BOOTSTRAP_HASKELL_GHC_VERSION=${{ matrix.ghc }} BOOTSTRAP_HASKELL_ADJUST_BASHRC=yes sh
autoreconf --version
autoreconf -i
cabal update
cabal sdist -z -o .
cabal get unix-*.tar.gz
cd unix-*/
cabal test all --test-show-details=direct
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