88#
99# For more information, see https://github.com/haskell-CI/haskell-ci
1010#
11- # version: 0.13.20211111
11+ # version: 0.15.20220808
1212#
13- # REGENDATA ("0.13.20211111 ",["github","cabal.project"])
13+ # REGENDATA ("0.15.20220808 ",["github","cabal.project"])
1414#
1515name : Haskell-CI
1616on :
2323jobs :
2424 linux :
2525 name : Haskell-CI - Linux - ${{ matrix.compiler }}
26- runs-on : ubuntu-18 .04
26+ runs-on : ubuntu-20 .04
2727 timeout-minutes :
2828 60
2929 container :
@@ -32,20 +32,25 @@ jobs:
3232 strategy :
3333 matrix :
3434 include :
35- - compiler : ghc-9.2 .1
35+ - compiler : ghc-9.4 .1
3636 compilerKind : ghc
37- compilerVersion : 9.2 .1
37+ compilerVersion : 9.4 .1
3838 setup-method : ghcup
3939 allow-failure : false
40- - compiler : ghc-9.0.1
40+ - compiler : ghc-9.2.4
4141 compilerKind : ghc
42- compilerVersion : 9.0.1
43- setup-method : hvr-ppa
42+ compilerVersion : 9.2.4
43+ setup-method : ghcup
4444 allow-failure : false
45- - compiler : ghc-8.10.4
45+ - compiler : ghc-9.0.2
4646 compilerKind : ghc
47- compilerVersion : 8.10.4
48- setup-method : hvr-ppa
47+ compilerVersion : 9.0.2
48+ setup-method : ghcup
49+ allow-failure : false
50+ - compiler : ghc-8.10.7
51+ compilerKind : ghc
52+ compilerVersion : 8.10.7
53+ setup-method : ghcup
4954 allow-failure : false
5055 - compiler : ghc-8.8.4
5156 compilerKind : ghc
@@ -100,18 +105,18 @@ jobs:
100105 apt-get install -y --no-install-recommends gnupg ca-certificates dirmngr curl git software-properties-common libtinfo5
101106 if [ "${{ matrix.setup-method }}" = ghcup ]; then
102107 mkdir -p "$HOME/.ghcup/bin"
103- curl -sL https://downloads.haskell.org/ghcup/0.1.17.3 /x86_64-linux-ghcup-0.1.17.3 > "$HOME/.ghcup/bin/ghcup"
108+ curl -sL https://downloads.haskell.org/ghcup/0.1.18.0 /x86_64-linux-ghcup-0.1.18.0 > "$HOME/.ghcup/bin/ghcup"
104109 chmod a+x "$HOME/.ghcup/bin/ghcup"
105- "$HOME/.ghcup/bin/ghcup" install ghc "$HCVER"
106- "$HOME/.ghcup/bin/ghcup" install cabal 3.6.2.0
110+ "$HOME/.ghcup/bin/ghcup" install ghc "$HCVER" || (cat "$HOME"/.ghcup/logs/*.* && false)
111+ "$HOME/.ghcup/bin/ghcup" install cabal 3.6.2.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
107112 else
108113 apt-add-repository -y 'ppa:hvr/ghc'
109114 apt-get update
110115 apt-get install -y "$HCNAME"
111116 mkdir -p "$HOME/.ghcup/bin"
112- curl -sL https://downloads.haskell.org/ghcup/0.1.17.3 /x86_64-linux-ghcup-0.1.17.3 > "$HOME/.ghcup/bin/ghcup"
117+ curl -sL https://downloads.haskell.org/ghcup/0.1.18.0 /x86_64-linux-ghcup-0.1.18.0 > "$HOME/.ghcup/bin/ghcup"
113118 chmod a+x "$HOME/.ghcup/bin/ghcup"
114- "$HOME/.ghcup/bin/ghcup" install cabal 3.6.2.0
119+ "$HOME/.ghcup/bin/ghcup" install cabal 3.6.2.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
115120 fi
116121 env :
117122 HCKIND : ${{ matrix.compilerKind }}
@@ -254,7 +259,7 @@ jobs:
254259 ${CABAL} -vnormal check
255260 - name : haddock
256261 run : |
257- $CABAL v2-haddock $ARG_COMPILER --with-haddock $HADDOCK $ARG_TESTS $ARG_BENCH all
262+ $CABAL v2-haddock --haddock-all $ARG_COMPILER --with-haddock $HADDOCK $ARG_TESTS $ARG_BENCH all
258263 - name : unconstrained build
259264 run : |
260265 rm -f cabal.project.local
0 commit comments