ci: binaries-linux-x64-static: roll back to ghc 9.0 to avoid segfault

Probably https://gitlab.haskell.org/ghc/ghc/-/issues/20266
This commit is contained in:
Simon Michael 2022-07-31 16:40:49 +01:00
parent a00c93fd07
commit 0e63bd1d6f

View File

@ -1,8 +1,8 @@
# Runs on any push to ci-linux-x64. # Runs on any push to ci-linux-x64.
# Produces optimised static x64 linux binaries, # Produces optimised static x64 linux binaries,
# using the GHC version below (9.2.3) and cabal. # using the GHC version below (9.0.2) and cabal.
# Currently runs no tests. # Currently runs no tests.
# XXX This is randomly segfaulting while building packages, needs replacing. # ghc 9.0 is used to avoid segfaults with the ghc 9.2 binaries on alpine, possibly https://gitlab.haskell.org/ghc/ghc/-/issues/20266
name: binaries-linux-x64-static name: binaries-linux-x64-static
@ -27,7 +27,7 @@ jobs:
run: | run: |
apk --no-cache add binutils-gold curl gcc g++ git gmp-dev ncurses-dev ncurses-static libffi-dev make xz tar perl zlib-dev zlib-static apk --no-cache add binutils-gold curl gcc g++ git gmp-dev ncurses-dev ncurses-static libffi-dev make xz tar perl zlib-dev zlib-static
mkdir -p ~/.ghcup/bin && curl https://downloads.haskell.org/~ghcup/x86_64-linux-ghcup > ~/.ghcup/bin/ghcup && chmod +x ~/.ghcup/bin/ghcup mkdir -p ~/.ghcup/bin && curl https://downloads.haskell.org/~ghcup/x86_64-linux-ghcup > ~/.ghcup/bin/ghcup && chmod +x ~/.ghcup/bin/ghcup
~/.ghcup/bin/ghcup install ghc 9.2.3 && ~/.ghcup/bin/ghcup set ghc 9.2.3 && ~/.ghcup/bin/ghcup install cabal ~/.ghcup/bin/ghcup install ghc 9.0.2 && ~/.ghcup/bin/ghcup set ghc 9.0.2 && ~/.ghcup/bin/ghcup install cabal
echo "$HOME/.ghcup/bin/" >> $GITHUB_PATH echo "$HOME/.ghcup/bin/" >> $GITHUB_PATH
- name: Check out - name: Check out