From 7cfcf6db8a3d5a15cfd361293bbbe2d38d473c5e Mon Sep 17 00:00:00 2001 From: Vidar Holen Date: Sun, 11 Dec 2022 19:22:42 -0800 Subject: [PATCH] Fix stack build --- test/distrotest | 2 +- test/stacktest | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/distrotest b/test/distrotest index e1711ea..53a40a7 100755 --- a/test/distrotest +++ b/test/distrotest @@ -73,7 +73,7 @@ ubuntu:18.04 apt-get update && apt-get install -y cabal-install ubuntu:16.04 apt-get update && apt-get install -y cabal-install # Stack on Ubuntu LTS -ubuntu:20.04 set -e; apt-get update && apt-get install -y curl && curl -sSL https://get.haskellstack.org/ | sh -s - -f && cd /mnt && exec test/stacktest +ubuntu:22.04 set -e; apt-get update && apt-get install -y curl && curl -sSL https://get.haskellstack.org/ | sh -s - -f && cd /mnt && exec test/stacktest EOF exit "$final" diff --git a/test/stacktest b/test/stacktest index ae04f1b..9eb8d1e 100755 --- a/test/stacktest +++ b/test/stacktest @@ -3,7 +3,7 @@ # various resolvers. It's run via distrotest. resolvers=( - nightly-"$(date -d "3 days ago" +"%Y-%m-%d")" +# nightly-"$(date -d "3 days ago" +"%Y-%m-%d")" ) die() { echo "$*" >&2; exit 1; }