-
Notifications
You must be signed in to change notification settings - Fork 6
195 lines (185 loc) · 8.21 KB
/
haskell.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
name: CI
on:
push:
branches: [ "master", "release/**" ]
pull_request:
branches: [ "**" ]
schedule:
- cron: "0 5 * * 5"
defaults: { run: { shell: bash } }
# Cancel running workflows when a new workflow on the same PR or branch is started,
# but put scheduled workflows into their own group
concurrency:
group: ${{
format('{0}-{1}{2}',
github.workflow,
github.event.pull_request.number || github.ref,
github.event_name == 'schedule' && '-scheduled' || '')}}
cancel-in-progress: true
jobs:
test-with-stack:
name: Stack
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- { os: Ubuntu-latest, resolver: lts-9, ghc: "8.0.2" }
- { os: Ubuntu-latest, resolver: lts-11, ghc: "8.2.2" }
- { os: Ubuntu-latest, resolver: lts-12, ghc: "8.4.4" }
- { os: Ubuntu-latest, resolver: lts-14, ghc: "8.6.5" }
- { os: Ubuntu-latest, resolver: lts-16, ghc: "8.8.4" }
- { os: Ubuntu-latest, resolver: lts-18, ghc: "8.10.7" }
- { os: Ubuntu-latest, resolver: lts-19, ghc: "9.0.2" }
- { os: Ubuntu-latest, resolver: lts-20, ghc: "9.2.8" }
- { os: Ubuntu-latest, resolver: lts-21, ghc: "9.4.8" }
- { os: Ubuntu-latest, resolver: lts-22, ghc: "9.6.6" }
- { os: Ubuntu-latest, resolver: lts-23, ghc: "9.8.4" }
- { os: Ubuntu-latest, resolver: nightly }
- { os: Windows-latest, resolver: lts-12, ghc: "8.4.4" }
- { os: Windows-latest, resolver: lts-14, ghc: "8.6.5" }
- { os: Windows-latest, resolver: lts-16, ghc: "8.8.4" }
- { os: Windows-latest, resolver: lts-18, ghc: "8.10.7" }
- { os: Windows-latest, resolver: lts-19, ghc: "9.0.2" }
- { os: Windows-latest, resolver: lts-20, ghc: "9.2.8" }
- { os: Windows-latest, resolver: lts-21, ghc: "9.4.8" }
- { os: Windows-latest, resolver: lts-22, ghc: "9.6.6" }
- { os: Windows-latest, resolver: lts-23, ghc: "9.8.4" }
- { os: Windows-latest, resolver: nightly }
- { os: MacOS-13, resolver: lts-12, ghc: "8.4.4" }
- { os: MacOS-13, resolver: lts-14, ghc: "8.6.5" }
- { os: MacOS-13, resolver: lts-16, ghc: "8.8.4" }
- { os: MacOS-13, resolver: lts-18, ghc: "8.10.7" }
- { os: MacOS-13, resolver: lts-19, ghc: "9.0.2" }
- { os: MacOS-latest, resolver: lts-20, ghc: "9.2.8" }
- { os: MacOS-latest, resolver: lts-21, ghc: "9.4.8" }
- { os: MacOS-latest, resolver: lts-22, ghc: "9.6.6" }
- { os: MacOS-latest, resolver: lts-23, ghc: "9.8.4" }
- { os: MacOS-latest, resolver: nightly }
env:
STACK_YAML: ${{ matrix.stack-yaml || matrix.ghc != '' && format('stack/ghc-{0}.yaml', matrix.ghc) || 'stack.yaml' }}
STACK_ARGS: '--resolver ${{ matrix.resolver }} --system-ghc'
cache-version: v0 # bump up this version to invalidate currently stored cache
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
enable-stack: true
stack-version: ${{ (matrix.resolver == 'lts-9' || matrix.resolver == 'lts-11') && '2.15.5' || 'latest' }}
stack-no-global: ${{ (matrix.resolver == 'lts-9' || matrix.resolver == 'lts-11') && 'true' || '' }}
- name: Cache
id: cache
uses: actions/cache@v4
with:
path: |
${{ steps.setup-haskell-cabal.outputs.stack-root }}
.stack-work
key: ${{ runner.os }}-${{ matrix.resolver }}-${{ env.cache-version }}
restore-keys: |
${{ runner.os }}-${{ matrix.resolver }}-${{ env.cache-version }}
- name: Windows Cache
id: cache-windows
uses: actions/cache@v4
if: matrix.os == 'windows-latest'
with:
path: |
C:\\Users\\RUNNER~1\\AppData\\Local\\Programs\\stack
key: ${{ runner.os }}-${{ matrix.resolver }}-programs-${{ env.cache-version }}
restore-keys: |
${{ runner.os }}-${{ matrix.resolver }}-programs-${{ env.cache-version }}
- name: Reset modtime
run: |
set -ex
curl -sSL https://raw.githubusercontent.com/lehins/utils/master/haskell/git-modtime/git-modtime.hs -o git-modtime.hs
runhaskell -- git-modtime.hs -f .stack-work-root/tree-contents.txt
- name: Build
run: |
set -ex
stack $STACK_ARGS test --no-run-tests --haddock --no-haddock-deps
- name: Test
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
set -ex
if [ "${{ matrix.os }}.${{ matrix.resolver }}" == "ubuntu-latest.lts-21" ] && [ -n "${COVERALLS_REPO_TOKEN}" ]; then
stack $STACK_ARGS test --coverage
stack $STACK_ARGS hpc report --all
curl -L https://github.com/rubik/stack-hpc-coveralls/releases/download/v0.0.7.0/shc-Linux-X64.tar.bz2 | tar xj shc
./shc --repo-token="$COVERALLS_REPO_TOKEN" --partial-coverage --fetch-coverage combined custom
else
stack $STACK_ARGS test
fi
test-with-cabal:
name: Cabal
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.4.4" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.6.5" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.8.4" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "8.10.7" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.0.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.2.8" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.4.8" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.6.6" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.8.2" }
- { cabal: "3.12", os: ubuntu-latest, ghc: "9.10.1" }
- { cabal: "3.12", os: windows-latest, ghc: "9.0.2" }
- { cabal: "3.12", os: windows-latest, ghc: "9.2.8" }
- { cabal: "3.12", os: windows-latest, ghc: "9.4.8" }
- { cabal: "3.12", os: windows-latest, ghc: "9.6.6" }
- { cabal: "3.12", os: windows-latest, ghc: "9.8.2" }
- { cabal: "3.12", os: windows-latest, ghc: "9.10.1" }
- { cabal: "3.12", os: macOS-13, ghc: "9.0.2" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.2.8" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.4.8" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.6.6" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.8.2" }
- { cabal: "3.12", os: macOS-latest, ghc: "9.10.1" }
env:
cache-version: v0 # bump up this version to invalidate currently stored cache
steps:
- uses: actions/checkout@v4
- uses: haskell-actions/setup@v2
id: setup-haskell-cabal
name: Setup Haskell
with:
ghc-version: ${{ matrix.ghc }}
cabal-version: ${{ matrix.cabal }}
- name: Cache Cabal Store
id: cache
uses: actions/cache@v4
with:
path: |
${{ steps.setup-haskell-cabal.outputs.cabal-store }}
dist-newstyle
key: cabal-${{ runner.os }}-${{ matrix.ghc }}-${{ env.cache-version }}
restore-keys: |
cabal-${{ runner.os }}-${{ matrix.ghc }}-${{ env.cache-version }}
- name: Build
run: |
set -ex
cabal configure --haddock-all --enable-tests --enable-benchmarks
cabal build all --write-ghc-environment-files=always
- name: Test
run: |
set -ex
cabal test all
- name: Doctest
# older ghc versions do not like some haddock examples
# linker on MacOS-13 complains too
# windows as always results in non-deterministic nonsense, so it will likely get disabled soon too.
# if: contains(fromJSON('["8.6.5", "8.8.4", "8.10.7", "9.0.2"]'), matrix.ghc) != true && matrix.os != 'macOS-13'
run: |
set -ex
cabal install doctest --ignore-project --overwrite-policy=always
cabal repl --build-depends=QuickCheck --with-compiler=doctest --repl-options='-w -Wdefault'
- name: Check Cabal Files
run: |
set -ex
cabal -vnormal check