diff --git a/.github/workflows/haskell-ci.yml b/.github/workflows/haskell-ci.yml index e164a7316..377723cd1 100644 --- a/.github/workflows/haskell-ci.yml +++ b/.github/workflows/haskell-ci.yml @@ -33,16 +33,16 @@ jobs: compilerVersion: 9.6.1 setup-method: ghcup allow-failure: false - - compiler: ghc-9.4.4 - compilerKind: ghc - compilerVersion: 9.4.4 - setup-method: ghcup - allow-failure: false - - compiler: ghc-9.2.5 - compilerKind: ghc - compilerVersion: 9.2.5 - setup-method: ghcup - allow-failure: false + # - compiler: ghc-9.4.4 + # compilerKind: ghc + # compilerVersion: 9.4.4 + # setup-method: ghcup + # allow-failure: false + # - compiler: ghc-9.2.5 + # compilerKind: ghc + # compilerVersion: 9.2.5 + # setup-method: ghcup + # allow-failure: false fail-fast: false steps: - name: apt @@ -53,7 +53,7 @@ jobs: curl -sL https://downloads.haskell.org/ghcup/0.1.19.2/x86_64-linux-ghcup-0.1.19.2 > "$HOME/.ghcup/bin/ghcup" chmod a+x "$HOME/.ghcup/bin/ghcup" "$HOME/.ghcup/bin/ghcup" install ghc "$HCVER" || (cat "$HOME"/.ghcup/logs/*.* && false) - "$HOME/.ghcup/bin/ghcup" install cabal 3.10.1.0 || (cat "$HOME"/.ghcup/logs/*.* && false) + "$HOME/.ghcup/bin/ghcup" install cabal 3.10.2.0 || (cat "$HOME"/.ghcup/logs/*.* && false) env: HCKIND: ${{ matrix.compilerKind }} HCNAME: ${{ matrix.compiler }} @@ -69,7 +69,7 @@ jobs: echo "HC=$HC" >> "$GITHUB_ENV" echo "HCPKG=$HOME/.ghcup/bin/$HCKIND-pkg-$HCVER" >> "$GITHUB_ENV" echo "HADDOCK=$HOME/.ghcup/bin/haddock-$HCVER" >> "$GITHUB_ENV" - echo "CABAL=$HOME/.ghcup/bin/cabal-3.10.1.0 -vnormal+nowrap" >> "$GITHUB_ENV" + echo "CABAL=$HOME/.ghcup/bin/cabal-3.10.2.0 -vnormal+nowrap" >> "$GITHUB_ENV" HCNUMVER=$(${HC} --numeric-version|perl -ne '/^(\d+)\.(\d+)\.(\d+)(\.(\d+))?$/; print(10000 * $1 + 100 * $2 + ($3 == 0 ? $5 != 1 : $3))') echo "HCNUMVER=$HCNUMVER" >> "$GITHUB_ENV" echo "ARG_TESTS=--enable-tests" >> "$GITHUB_ENV"