summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Gamari <ben@smart-cactus.org>2018-12-15 01:20:16 -0500
committerBen Gamari <ben@smart-cactus.org>2018-12-15 17:49:04 -0500
commitebb7613a66a784fc0015e13a6379453e6d5af44d (patch)
tree804110021352ac999f2f52aed6fef24e0fc810ef
parent442be690e1ca162e22d632df695c29f90625f33e (diff)
downloadhaskell-ebb7613a66a784fc0015e13a6379453e6d5af44d.tar.gz
gitlab-ci: Add aarch64 target
-rw-r--r--.circleci/images/aarch64-linux-deb9/Dockerfile69
-rw-r--r--.gitlab-ci.yml11
2 files changed, 80 insertions, 0 deletions
diff --git a/.circleci/images/aarch64-linux-deb9/Dockerfile b/.circleci/images/aarch64-linux-deb9/Dockerfile
new file mode 100644
index 0000000000..f871f75b2f
--- /dev/null
+++ b/.circleci/images/aarch64-linux-deb9/Dockerfile
@@ -0,0 +1,69 @@
+FROM aarch64/debian:stretch
+
+ENV LANG C.UTF-8
+
+# Core build utilities
+RUN apt-get update -qq
+RUN apt-get install -qy zlib1g-dev libtinfo-dev libsqlite3-0 libsqlite3-dev \
+ ca-certificates g++ git make automake autoconf gcc \
+ perl python3 texinfo xz-utils lbzip2 patch openssh-client sudo \
+ jq wget curl libnuma-dev
+
+# Documentation tools
+RUN apt-get install -qy python3-sphinx texlive-xetex texlive-latex-extra
+
+# Boot LLVM
+ENV PATH /usr/local/bin:$PATH
+ENV LLVM_TARBALL http://releases.llvm.org/6.0.0/clang+llvm-6.0.0-aarch64-linux-gnu.tar.xz
+RUN curl $LLVM_TARBALL | tar -xJC .. && \
+ mkdir /opt/llvm6 && \
+ cp -R clang+llvm*/* /opt/llvm6 && \
+ rm -R clang+llvm* && \
+ /opt/llvm6/bin/llc --version
+
+# GHC
+#RUN curl http://downloads.haskell.org/~ghc/8.6.2/ghc-8.6.2-aarch64-deb8-linux.tar.xz | tar -xJ && \
+COPY ghc-8.6.2-aarch64-unknown-linux.tar.xz .
+RUN cat ghc-8.6.2-aarch64-unknown-linux.tar.xz | tar -xJ && \
+ cd ghc-8.6.2 && \
+ ./configure --prefix=/usr/local LLC=/opt/llvm6/bin/llc OPT=/opt/llvm6/bin/opt && \
+ make install && \
+ cd .. && \
+ rm -Rf ghc-*
+RUN ghc --version
+
+# LLVM
+ENV LLVM_TARBALL http://releases.llvm.org/7.0.0/clang+llvm-7.0.0-aarch64-linux-gnu.tar.xz
+ENV LLC /opt/llvm7/bin/llc
+ENV OPT /opt/llvm7/bin/opt
+RUN curl $LLVM_TARBALL | tar -xJC .. && \
+ mkdir /opt/llvm7 && \
+ cp -R clang+llvm*/* /opt/llvm7 && \
+ rm -R clang+llvm* && \
+ $LLC --version
+
+# Cabal
+RUN git clone https://github.com/haskell/Cabal && \
+ cd Cabal && \
+ git checkout cabal-install-v2.4.1.0 && \
+ cd cabal-install && \
+ ./bootstrap.sh --global --no-doc
+
+RUN ls Cabal/cabal-install/dist/build
+
+ENV PATH /home/ghc/.local/bin:/opt/cabal/2.2/bin:/opt/ghc/8.4.2/bin:$PATH
+
+# Create a normal user.
+RUN adduser ghc --gecos "GHC builds" --disabled-password
+RUN echo "ghc ALL = NOPASSWD : ALL" > /etc/sudoers.d/ghc
+USER ghc
+
+# Build Haskell tools
+RUN cabal update && \
+ cabal install hscolour happy alex
+ENV PATH /home/ghc/.cabal/bin:$PATH
+
+WORKDIR /home/ghc/
+
+CMD ["bash"]
+
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6ef2ca8240..6cd5e55e96 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -134,6 +134,17 @@ validate-x86_64-darwin:
- cabal-cache
- toolchain
+validate-aarch64-linux-deb9:
+ extends: .validate-linux
+ image: ghcci/aarch64-linux-deb9:0.1
+ allow_failure: true
+ artifacts:
+ when: always
+ cache:
+ key: linux-aarch64-deb9
+ tags:
+ - aarch64-linux
+
validate-x86_64-linux-deb9:
extends: .validate-linux
image: ghcci/x86_64-linux-deb9:0.2