Skip to content

Commit

Permalink
Use Stack's Stack 2.9.3 for Linux/AArch64 CI
Browse files Browse the repository at this point in the history
Due to the problem with Stack's Stack 2.9.1, previously GHCup's Stack 2.9.1 was used.
  • Loading branch information
mpilgrem committed Dec 19, 2022
1 parent e9364d0 commit ce952f6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions etc/dockerfiles/arm64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ RUN cd /tmp && \
tar xfv /tmp/llvm.tar --strip-components 1 -C /usr && \
rm /tmp/llvm.tar

RUN curl -L https://downloads.haskell.org/ghcup/unofficial-bindists/stack/2.9.1/stack-2.9.1-linux-aarch64.tar.gz --output /tmp/stack.tar.gz && \
tar xfv /tmp/stack.tar.gz -C /usr/local/bin && \
# Stack's *.tar archive contains a directory that contains the 'stack'
# executable, hence the use of tar's '--strip-components 1' option.
RUN curl -L https://github.com/commercialhaskell/stack/releases/download/v2.9.3/stack-2.9.3-linux-aarch64.tar.gz --output /tmp/stack.tar.gz && \
tar xfv /tmp/stack.tar.gz -C /usr/local/bin --strip-components 1 && \
rm /tmp/stack.tar.gz

# RUN curl -sSL https://github.com/commercialhaskell/stack/releases/download/v2.7.1/stack-2.7.1-linux-aarch64.bin > /usr/local/bin/stack && \
Expand Down

0 comments on commit ce952f6

Please sign in to comment.