Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Cabal
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
Cabal
Commits
5e6ad862
Commit
5e6ad862
authored
11 months ago
by
Bryan R
Committed by
Mergify
11 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Only use ghcup where needed
(cherry picked from commit
6b6c6842
)
parent
7cd0615f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab/ci.sh
+7
-31
7 additions, 31 deletions
.gitlab/ci.sh
.gitlab/ghcup.sh
+38
-0
38 additions, 0 deletions
.gitlab/ghcup.sh
with
45 additions
and
31 deletions
.gitlab/ci.sh
+
7
−
31
View file @
5e6ad862
...
...
@@ -4,49 +4,26 @@ set -Eeuo pipefail
source
"
$CI_PROJECT_DIR
/.gitlab/common.sh"
export
GHCUP_INSTALL_BASE_PREFIX
=
"
$CI_PROJECT_DIR
/toolchain"
if
[[
"
$(
uname
)
"
==
"Linux"
]]
;
then
export
PATH
=
"/opt/ghc/
${
GHC_VERSION
}
/bin:
${
PATH
}
"
# Not all runners use ci-images, so ghcup is used.
else
.
"
$CI_PROJECT_DIR
/.gitlab/ghcup.sh"
fi
export
CABAL_DIR
=
"
$CI_PROJECT_DIR
/cabal"
case
"
$(
uname
)
"
in
MSYS_
*
|
MINGW
*
)
export
CABAL_DIR
=
"
$(
cygpath
-w
"
$CABAL_DIR
"
)
"
GHCUP_BINDIR
=
"
${
GHCUP_INSTALL_BASE_PREFIX
}
/ghcup/bin"
EXE_EXT
=
".exe"
;;
*
)
GHCUP_BINDIR
=
"
${
GHCUP_INSTALL_BASE_PREFIX
}
/.ghcup/bin"
EXE_EXT
=
""
;;
esac
mkdir
-p
"
$CABAL_DIR
"
mkdir
-p
"
$GHCUP_BINDIR
"
export
PATH
=
"
$GHCUP_BINDIR
:
$PATH
"
export
BOOTSTRAP_HASKELL_NONINTERACTIVE
=
1
export
BOOTSTRAP_HASKELL_GHC_VERSION
=
$GHC_VERSION
export
BOOTSTRAP_HASKELL_CABAL_VERSION
=
$CABAL_INSTALL_VERSION
export
BOOTSTRAP_HASKELL_ADJUST_CABAL_CONFIG
=
yes
# We don't use stack, and it isn't available on i386-deb9
export
BOOTSTRAP_HASKELL_INSTALL_NO_STACK
=
yes
# for some reason the subshell doesn't pick up the arm64 environment on darwin
# and starts installing x86_64 GHC
case
"
$(
uname
-s
)
"
in
"Darwin"
|
"darwin"
)
case
"
$(
/usr/bin/arch
)
"
in
aarch64|arm64|armv8l
)
curl
--proto
'=https'
--tlsv1
.2
-sSf
https://get-ghcup.haskell.org |
arch
-arm64
/bin/bash
;;
*
)
curl
--proto
'=https'
--tlsv1
.2
-sSf
https://get-ghcup.haskell.org | sh
;;
esac
;;
*
)
curl
--proto
'=https'
--tlsv1
.2
-sSf
https://get-ghcup.haskell.org | sh
;;
esac
# https://github.com/haskell/cabal/issues/7313#issuecomment-811851884
# and
...
...
@@ -58,7 +35,6 @@ if [ "$(getconf LONG_BIT)" = "32" -o "${PLATFORM:=xxx}" = "x86_64-linux-centos7"
fi
args
=(
-w
"ghc-
$GHC_VERSION
"
--disable-profiling
--enable-executable-stripping
--project-file
=
cabal.project.release
...
...
This diff is collapsed.
Click to expand it.
.gitlab/ghcup.sh
0 → 100644
+
38
−
0
View file @
5e6ad862
export
GHCUP_INSTALL_BASE_PREFIX
=
"
$CI_PROJECT_DIR
/toolchain"
case
"
$(
uname
)
"
in
MSYS_
*
|
MINGW
*
)
GHCUP_BINDIR
=
"
${
GHCUP_INSTALL_BASE_PREFIX
}
/ghcup/bin"
;;
*
)
GHCUP_BINDIR
=
"
${
GHCUP_INSTALL_BASE_PREFIX
}
/.ghcup/bin"
;;
esac
mkdir
-p
"
$GHCUP_BINDIR
"
export
PATH
=
"
$GHCUP_BINDIR
:
$PATH
"
export
BOOTSTRAP_HASKELL_NONINTERACTIVE
=
1
export
BOOTSTRAP_HASKELL_GHC_VERSION
=
$GHC_VERSION
export
BOOTSTRAP_HASKELL_CABAL_VERSION
=
$CABAL_INSTALL_VERSION
export
BOOTSTRAP_HASKELL_ADJUST_CABAL_CONFIG
=
yes
# We don't use stack, and it isn't available on i386-deb9
export
BOOTSTRAP_HASKELL_INSTALL_NO_STACK
=
yes
# for some reason the subshell doesn't pick up the arm64 environment on darwin
# and starts installing x86_64 GHC
case
"
$(
uname
-s
)
"
in
"Darwin"
|
"darwin"
)
case
"
$(
/usr/bin/arch
)
"
in
aarch64|arm64|armv8l
)
curl
--proto
'=https'
--tlsv1
.2
-sSf
https://get-ghcup.haskell.org |
arch
-arm64
/bin/bash
;;
*
)
curl
--proto
'=https'
--tlsv1
.2
-sSf
https://get-ghcup.haskell.org | sh
;;
esac
;;
*
)
curl
--proto
'=https'
--tlsv1
.2
-sSf
https://get-ghcup.haskell.org | sh
;;
esac
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