-
-
Notifications
You must be signed in to change notification settings - Fork 4k
178 lines (150 loc) · 4.39 KB
/
Copy pathci.yml
File metadata and controls
178 lines (150 loc) · 4.39 KB
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
name: CI tests
on:
push:
branches:
- 'main'
paths-ignore:
- 'doc/*.md'
- 'MANUAL.txt'
- '*.md'
- '.cirrus.yml'
- 'RELEASE-CHECKLIST-TEMPLATE.org'
- 'release-announcements.txt'
- 'BUGS'
- 'README.template'
- 'hie.yaml'
- '*.nix'
- 'tools/**'
- 'linux/**'
- 'macos/**'
- 'windows/**'
- 'man/**'
pull_request:
paths-ignore:
- 'doc/*.md'
- 'MANUAL.txt'
- '*.md'
- 'RELEASE-CHECKLIST-TEMPLATE.org'
- 'release-announcements.txt'
- 'BUGS'
- 'README.template'
- 'hie.yaml'
- '*.nix'
- 'tools/**'
- 'linux/**'
- 'macos/**'
- 'windows/**'
- 'man/**'
permissions:
contents: read
jobs:
linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
versions:
# NOTE: Update `CONTRIBUTING.md` when changing the minimum version
- ghc: '9.6'
cabal: 'latest'
cabalopts: '--ghc-option=-Werror'
- ghc: '9.8'
cabal: 'latest'
cabalopts: '--ghc-option=-Werror'
- ghc: '9.10'
cabal: 'latest'
cabalopts: '--ghc-option=-Werror'
- ghc: '9.12'
cabal: 'latest'
cabalopts: '--ghc-option=-Werror'
- ghc: '9.12'
cabal: 'latest'
cabalopts: '--ghc-option=-Werror -f-embed_data_files'
steps:
- uses: actions/checkout@v7
# needed by memory
- name: Install numa
run: sudo apt-get install libnuma-dev
- name: Workaround runner image issue
# https://github.com/actions/runner-images/issues/7061
run: sudo chown -R $USER /usr/local/.ghcup
- name: Install cabal/ghc
run: |
ghcup install ghc --set ${{ matrix.versions.ghc }}
ghcup install cabal --set ${{ matrix.versions.cabal }}
# declare/restore cached things
- name: Cache cabal global package db
id: cabal-global
uses: actions/cache@v6
with:
path: |
~/.local/state/cabal
key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-global-${{ secrets.CACHE_VERSION }}
- name: Cache cabal work
id: cabal-local
uses: actions/cache@v6
with:
path: |
dist-newstyle
key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-cabal-local-${{ secrets.CACHE_VERSION }}
- name: Update cabal
run: |
cabal update
- name: Build and test
run: |
cabal build ${{ matrix.versions.cabalopts }} --enable-tests --disable-optimization all
cabal test ${{ matrix.versions.cabalopts }} --disable-optimization all
linux-stack:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- uses: actions/checkout@v7
# needed by memory
- name: Install numa
run: sudo apt-get install libnuma-dev
# declare/restore cached things
- name: Cache stack global package db
id: stack-global
uses: actions/cache@v6
with:
path: |
~/.stack
key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-stack-global-${{ secrets.CACHE_VERSION }}
- name: Cache stack work
id: stack-local
uses: actions/cache@v6
with:
path: |
.stack-work
key: ${{ runner.os }}-${{ matrix.versions.ghc }}-${{ matrix.versions.cabal }}-stack-local-${{ secrets.CACHE_VERSION }}
- name: Build and test
run: |
stack test --fast
windows:
runs-on: windows-2022
steps:
- uses: actions/checkout@v7
- name: Install ghc
run: |
ghcup install ghc --set 9.10
ghcup install cabal --set latest
# declare/restore cached things
- name: Cache cabal global package db
id: cabal-global
uses: actions/cache@v6
with:
path: |
%LOCALAPPDATA%/cabal/store
key: ${{ runner.os }}-appdata-cabal-${{ hashFiles('cabal.project') }}-${{ secrets.CACHE_VERSION }}
- name: Cache cabal work
id: cabal-local
uses: actions/cache@v6
with:
path: |
dist-newstyle
key: ${{ runner.os }}-cabal-work-${{ hashFiles('cabal.project') }}-${{ secrets.CACHE_VERSION }}
- name: Build and test
run: |
cabal update
cabal test --ghc-option=-Werror -fhttp --enable-tests --disable-optimization --ghc-options=-Werror all