Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
GHC musl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glasgow Haskell Compiler
GHC musl
Commits
1f52c67d
Verified
Commit
1f52c67d
authored
1 year ago
by
Olivier Benz
Browse files
Options
Downloads
Plain Diff
Merge branch 'freeze-version'
parents
09ebf364
3e73e84d
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
prior/9.2.8.Dockerfile
+136
-0
136 additions, 0 deletions
prior/9.2.8.Dockerfile
prior/9.4.6.Dockerfile
+130
-0
130 additions, 0 deletions
prior/9.4.6.Dockerfile
with
266 additions
and
0 deletions
prior/9.2.8.Dockerfile
0 → 100644
+
136
−
0
View file @
1f52c67d
ARG
GHC_VERSION_BUILD=9.2.8
ARG
CABAL_VERSION_BUILD=3.6.2.0
FROM
glcr.b-data.ch/ghc/ghc-musl:9.0.2
as
bootstrap
ARG
GHC_VERSION_BUILD
ARG
CABAL_VERSION_BUILD
ENV
GHC_VERSION=${GHC_VERSION_BUILD} \
CABAL_VERSION=${CABAL_VERSION_BUILD}
RUN
apk upgrade
--no-cache
\
&&
apk add
--update
--no-cache
\
autoconf
\
automake
\
binutils-gold
\
build-base
\
coreutils
\
cpio
\
curl
\
gnupg
\
linux-headers
\
libffi-dev
\
llvm12
\
ncurses-dev
\
perl
\
python3
\
xz
\
zlib-dev
RUN
cd
/tmp
\
&&
curl
-sSLO
https://downloads.haskell.org/~ghc/
$GHC_VERSION
/ghc-
$GHC_VERSION
-src
.tar.xz
\
&&
curl
-sSLO
https://downloads.haskell.org/~ghc/
$GHC_VERSION
/ghc-
$GHC_VERSION
-src
.tar.xz.sig
\
&&
gpg
--keyserver
hkps://keyserver.ubuntu.com:443
\
--receive-keys
88B57FCF7DB53B4DB3BFA4B1588764FBE22D19C4
\
&&
gpg
--verify
ghc-
$GHC_VERSION
-src
.tar.xz.sig ghc-
$GHC_VERSION
-src
.tar.xz
\
&&
tar
xf ghc-
$GHC_VERSION
-src
.tar.xz
\
&&
cd
ghc-
$GHC_VERSION
\
# Use the LLVM backend
&& cp mk/build.mk.sample mk/build.mk \
&& echo 'BuildFlavour=perf-llvm' >> mk/build.mk \
&& echo 'BeConservative=YES' >> mk/build.mk \
&& echo 'SplitSections=YES' >> mk/build.mk \
&& echo 'HADDOCK_DOCS=NO' >> mk/build.mk \
&& echo 'HSCOLOUR_SRCS=NO' >> mk/build.mk \
&& echo 'BUILD_SPHINX_HTML=NO' >> mk/build.mk \
&& echo 'BUILD_SPHINX_PS=NO' >> mk/build.mk \
&& echo 'BUILD_SPHINX_PDF=NO' >> mk/build.mk \
&& ./boot \
&& ./configure --disable-ld-override LD=ld.gold \
# Switch llvm-targets from unknown-linux-gnueabihf->alpine-linux
# so we can match the llvm vendor string alpine uses
&& sed -i -e 's/unknown-linux-gnueabihf/alpine-linux/g' llvm-targets \
&& sed -i -e 's/unknown-linux-gnueabi/alpine-linux/g' llvm-targets \
&& sed -i -e 's/unknown-linux-gnu/alpine-linux/g' llvm-targets \
# See https://unix.stackexchange.com/questions/519092/what-is-the-logic-of-using-nproc-1-in-make-command
&& make -j$((`nproc`+1)) \
&& make binary-dist \
&& cabal update \
# See https://gitlab.haskell.org/ghc/ghc/-/wikis/commentary/libraries/version-history
&& cabal install --allow-newer --constraint 'Cabal-syntax<3.7' cabal-install-$CABAL_VERSION
FROM
alpine:3.16
as
builder
LABEL
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.source="https://gitlab.b-data.ch/ghc/ghc-musl" \
org.opencontainers.image.vendor="Olivier Benz" \
org.opencontainers.image.authors="Olivier Benz <olivier.benz@b-data.ch>"
ARG
GHC_VERSION_BUILD
ARG
CABAL_VERSION_BUILD
ENV
GHC_VERSION=${GHC_VERSION_BUILD} \
CABAL_VERSION=${CABAL_VERSION_BUILD}
RUN
apk upgrade
--no-cache
\
&&
apk add
--update
--no-cache
\
bash
\
build-base
\
bzip2
\
bzip2-dev
\
bzip2-static
\
curl
\
curl-static
\
dpkg
\
fakeroot
\
git
\
gmp-dev
\
libcurl
\
libffi
\
libffi-dev
\
llvm12
\
ncurses-dev
\
ncurses-static
\
openssl-dev
\
openssl-libs-static
\
pcre
\
pcre-dev
\
pcre2
\
pcre2-dev
\
perl
\
wget
\
xz
\
xz-dev
\
zlib
\
zlib-dev
\
zlib-static
COPY
--from=bootstrap /tmp/ghc-$GHC_VERSION/ghc-$GHC_VERSION-*-alpine-linux.tar.xz /tmp/
COPY
--from=bootstrap /root/.cabal/bin/cabal /usr/bin/cabal
RUN
cd
/tmp
\
&&
tar
-xJf
ghc-
$GHC_VERSION
-
*
-alpine-linux
.tar.xz
\
&&
cd
ghc-
$GHC_VERSION
\
&&
./configure
--disable-ld-override
--prefix
=
/usr
\
&&
make
install
\
&&
cd
/
\
&&
rm
-rf
/tmp/
*
FROM
builder
as
tester
COPY
Main.hs Main.hs
RUN
ghc
-static
-optl-pthread
-optl-static
Main.hs
\
&&
file Main
\
&&
./Main
\
# Test cabal workflow
&& mkdir cabal-test \
&& cd cabal-test \
&& cabal update \
&& cabal init -n --is-executable -p tester -l MIT \
&& cabal run
FROM
builder
as
final
CMD
["ghci"]
This diff is collapsed.
Click to expand it.
prior/9.4.6.Dockerfile
0 → 100644
+
130
−
0
View file @
1f52c67d
ARG
GHC_VERSION_BUILD=9.4.6
ARG
CABAL_VERSION_BUILD=3.8.1.0
FROM
glcr.b-data.ch/ghc/ghc-musl:9.2.8
as
bootstrap
ARG
GHC_VERSION_BUILD
ARG
CABAL_VERSION_BUILD
ENV
GHC_VERSION=${GHC_VERSION_BUILD} \
CABAL_VERSION=${CABAL_VERSION_BUILD}
RUN
apk upgrade
--no-cache
\
&&
apk add
--update
--no-cache
\
autoconf
\
automake
\
binutils-gold
\
build-base
\
coreutils
\
cpio
\
curl
\
gnupg
\
linux-headers
\
libffi-dev
\
llvm12
\
ncurses-dev
\
perl
\
python3
\
xz
\
zlib-dev
RUN
cd
/tmp
\
&&
curl
-sSLO
https://downloads.haskell.org/~ghc/
"
$GHC_VERSION
"
/ghc-
"
$GHC_VERSION
"
-src
.tar.xz
\
&&
curl
-sSLO
https://downloads.haskell.org/~ghc/
"
$GHC_VERSION
"
/ghc-
"
$GHC_VERSION
"
-src
.tar.xz.sig
\
&&
gpg
--keyserver
hkps://keyserver.ubuntu.com:443
\
--receive-keys
88B57FCF7DB53B4DB3BFA4B1588764FBE22D19C4
\
&&
gpg
--verify
"ghc-
$GHC_VERSION
-src.tar.xz.sig"
"ghc-
$GHC_VERSION
-src.tar.xz"
\
&&
tar
-xJf
"ghc-
$GHC_VERSION
-src.tar.xz"
\
&&
cd
"ghc-
$GHC_VERSION
"
\
&&
./boot.source
\
&&
./configure
--disable-ld-override
LD
=
ld.gold
\
# Use the LLVM backend
# Switch llvm-targets from unknown-linux-gnueabihf->alpine-linux
# so we can match the llvm vendor string alpine uses
&& sed -i -e 's/unknown-linux-gnueabihf/alpine-linux/g' llvm-targets \
&& sed -i -e 's/unknown-linux-gnueabi/alpine-linux/g' llvm-targets \
&& sed -i -e 's/unknown-linux-gnu/alpine-linux/g' llvm-targets \
&& cabal update \
# See https://unix.stackexchange.com/questions/519092/what-is-the-logic-of-using-nproc-1-in-make-command
&& hadrian/build binary-dist -j"$(($(nproc)+1))" \
--flavour=perf+llvm+split_sections \
--docs=none \
# See https://gitlab.haskell.org/ghc/ghc/-/wikis/commentary/libraries/version-history
&& cabal install --allow-newer --constraint 'Cabal-syntax<3.9' "cabal-install-$CABAL_VERSION"
FROM
alpine:3.18
as
builder
LABEL
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.source="https://gitlab.b-data.ch/ghc/ghc-musl" \
org.opencontainers.image.vendor="Olivier Benz" \
org.opencontainers.image.authors="Olivier Benz <olivier.benz@b-data.ch>"
ARG
GHC_VERSION_BUILD
ARG
CABAL_VERSION_BUILD
ENV
GHC_VERSION=${GHC_VERSION_BUILD} \
CABAL_VERSION=${CABAL_VERSION_BUILD}
RUN
apk upgrade
--no-cache
\
&&
apk add
--update
--no-cache
\
bash
\
build-base
\
bzip2
\
bzip2-dev
\
bzip2-static
\
curl
\
curl-static
\
dpkg
\
fakeroot
\
git
\
gmp-dev
\
libcurl
\
libffi
\
libffi-dev
\
llvm14
\
ncurses-dev
\
ncurses-static
\
openssl-dev
\
openssl-libs-static
\
pcre
\
pcre-dev
\
pcre2
\
pcre2-dev
\
perl
\
wget
\
xz
\
xz-dev
\
zlib
\
zlib-dev
\
zlib-static
COPY
--from=bootstrap /tmp/ghc-"$GHC_VERSION"/_build/bindist/ghc-"$GHC_VERSION"-*-alpine-linux.tar.xz /tmp/
COPY
--from=bootstrap /root/.cabal/bin/cabal /usr/bin/cabal
RUN
cd
/tmp
\
&&
tar
-xJf
ghc-
"
$GHC_VERSION
"
-
*
-alpine-linux
.tar.xz
\
&&
cd
ghc-
"
$GHC_VERSION
"
-
*
-alpine-linux
\
&&
./configure
--disable-ld-override
\
&&
make
install
\
&&
cd
/
\
&&
rm
-rf
/tmp/
*
FROM
builder
as
tester
WORKDIR
/usr/local/src
COPY
Main.hs Main.hs
RUN
ghc
-static
-optl-pthread
-optl-static
Main.hs
\
&&
file Main
\
&&
./Main
\
# Test cabal workflow
&& mkdir cabal-test \
&& cd cabal-test \
&& cabal update \
&& cabal init -n --is-executable -p tester -l MIT \
&& cabal run
FROM
builder
as
final
CMD
["ghci"]
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