1
1
# This GitHub workflow config has been generated by a script via
2
2
#
3
- # haskell-ci 'github' '--config=cabal.haskell-ci' 'cabal.project'
3
+ # haskell-ci 'github' '--config=cabal.haskell-ci' '--ghc-head' ' cabal.project'
4
4
#
5
5
# To regenerate the script (for example after adjusting tested-with) run
6
6
#
7
7
# haskell-ci regenerate
8
8
#
9
9
# For more information, see https://github.com/haskell-CI/haskell-ci
10
10
#
11
- # version: 0.15.20220620
11
+ # version: 0.15.20220826
12
12
#
13
- # REGENDATA ("0.15.20220620 ",["github","--config=cabal.haskell-ci","cabal.project"])
13
+ # REGENDATA ("0.15.20220826 ",["github","--config=cabal.haskell-ci","--ghc-head ","cabal.project"])
14
14
#
15
15
name : Haskell-CI
16
16
on :
@@ -32,11 +32,11 @@ jobs:
32
32
strategy :
33
33
matrix :
34
34
include :
35
- - compiler : ghc-9.4.0.20220523
35
+ - compiler : ghc-9.4.2
36
36
compilerKind : ghc
37
- compilerVersion : 9.4.0.20220523
37
+ compilerVersion : 9.4.2
38
38
setup-method : ghcup
39
- allow-failure : true
39
+ allow-failure : false
40
40
- compiler : ghc-9.2.2
41
41
compilerKind : ghc
42
42
compilerVersion : 9.2.2
85
85
apt-get install -y --no-install-recommends gnupg ca-certificates dirmngr curl git software-properties-common libtinfo5
86
86
if [ "${{ matrix.setup-method }}" = ghcup ]; then
87
87
mkdir -p "$HOME/.ghcup/bin"
88
- curl -sL https://downloads.haskell.org/ghcup/0.1.17.8 /x86_64-linux-ghcup-0.1.17.8 > "$HOME/.ghcup/bin/ghcup"
88
+ curl -sL https://downloads.haskell.org/ghcup/0.1.18.0 /x86_64-linux-ghcup-0.1.18.0 > "$HOME/.ghcup/bin/ghcup"
89
89
chmod a+x "$HOME/.ghcup/bin/ghcup"
90
90
"$HOME/.ghcup/bin/ghcup" config add-release-channel https://raw.githubusercontent.com/haskell/ghcup-metadata/master/ghcup-prereleases-0.0.7.yaml;
91
91
"$HOME/.ghcup/bin/ghcup" install ghc "$HCVER" || (cat "$HOME"/.ghcup/logs/*.* && false)
95
95
apt-get update
96
96
apt-get install -y "$HCNAME"
97
97
mkdir -p "$HOME/.ghcup/bin"
98
- curl -sL https://downloads.haskell.org/ghcup/0.1.17.8 /x86_64-linux-ghcup-0.1.17.8 > "$HOME/.ghcup/bin/ghcup"
98
+ curl -sL https://downloads.haskell.org/ghcup/0.1.18.0 /x86_64-linux-ghcup-0.1.18.0 > "$HOME/.ghcup/bin/ghcup"
99
99
chmod a+x "$HOME/.ghcup/bin/ghcup"
100
100
"$HOME/.ghcup/bin/ghcup" install cabal 3.6.2.0 || (cat "$HOME"/.ghcup/logs/*.* && false)
101
101
fi
@@ -128,7 +128,7 @@ jobs:
128
128
echo "HCNUMVER=$HCNUMVER" >> "$GITHUB_ENV"
129
129
echo "ARG_TESTS=--enable-tests" >> "$GITHUB_ENV"
130
130
echo "ARG_BENCH=--enable-benchmarks" >> "$GITHUB_ENV"
131
- if [ $((HCNUMVER >= 90400 )) -ne 0 ] ; then echo "HEADHACKAGE=true" >> "$GITHUB_ENV" ; else echo "HEADHACKAGE=false" >> "$GITHUB_ENV" ; fi
131
+ if [ $((HCNUMVER > 90402 )) -ne 0 ] ; then echo "HEADHACKAGE=true" >> "$GITHUB_ENV" ; else echo "HEADHACKAGE=false" >> "$GITHUB_ENV" ; fi
132
132
echo "ARG_COMPILER=--$HCKIND --with-compiler=$HC" >> "$GITHUB_ENV"
133
133
echo "GHCJSARITH=0" >> "$GITHUB_ENV"
134
134
env :
0 commit comments