-
Notifications
You must be signed in to change notification settings - Fork 88
294 lines (232 loc) · 9.42 KB
/
unlocked.yml
File metadata and controls
294 lines (232 loc) · 9.42 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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
name: unlocked
on:
# pull_request: # save CI time on PRs, run manually if needed (before merge) or find out failures from scheduled run (after merge)
# paths-ignore:
# - 'docs/**'
workflow_dispatch:
schedule:
# nightly
- cron: '31 1 * * *' # 01:31 UTC, 02:31/03:31 Munich, 03:31/04:31 Tartu
# GitHub Actions load is high at minute 0, so avoid that
jobs:
regression:
strategy:
fail-fast: false
matrix:
# We don't want a full matrix because it is too slow, so we only have linear axes overriding these below.
include:
# Common configuration
- os: ubuntu-24.04
ocaml-compiler: ocaml-variants.4.14.2+options,ocaml-option-flambda # matches opam lock file
apron: true
z3: false
# OCaml versions
- os: ubuntu-24.04
ocaml-compiler: 5.4.x
apron: true
z3: false
- os: ubuntu-24.04
ocaml-compiler: 5.3.x
apron: true
z3: false
- os: ubuntu-24.04
ocaml-compiler: 5.2.x
apron: true
z3: false
- os: ubuntu-24.04
ocaml-compiler: 5.1.x
apron: true
z3: false
- os: ubuntu-24.04
ocaml-compiler: 5.0.x
apron: true
z3: false
- os: ubuntu-24.04
ocaml-compiler: 4.14.x
apron: true
z3: false
# OS-s
- os: ubuntu-22.04
ocaml-compiler: ocaml-variants.4.14.2+options,ocaml-option-flambda # matches opam lock file
apron: true
z3: false
- os: macos-26
ocaml-compiler: ocaml-variants.4.14.2+options,ocaml-option-flambda # matches opam lock file
apron: true
z3: false
- os: macos-15-intel
ocaml-compiler: ocaml-variants.4.14.2+options,ocaml-option-flambda # matches opam lock file
apron: true
z3: false
- os: macos-15
ocaml-compiler: ocaml-variants.4.14.2+options,ocaml-option-flambda # matches opam lock file
apron: true
z3: false
- os: macos-14
ocaml-compiler: ocaml-variants.4.14.2+options,ocaml-option-flambda # matches opam lock file
apron: true
z3: false
# Optional dependencies
- os: ubuntu-24.04
ocaml-compiler: ocaml-variants.4.14.2+options,ocaml-option-flambda # matches opam lock file
apron: false
z3: false
- os: ubuntu-24.04
ocaml-compiler: ocaml-variants.4.14.2+options,ocaml-option-flambda # matches opam lock file
apron: true
z3: true
# customize name to use readable string for apron instead of just a boolean
# workaround for missing ternary operator: https://github.com/actions/runner/issues/409
name: regression (${{ matrix.os }}, ${{ matrix.ocaml-compiler }}${{ matrix.apron && ', apron' || '' }}${{ matrix.z3 && ', z3' || '' }})
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Install graph-easy # TODO: remove if depext --with-test works (https://github.com/ocaml/opam/issues/5836)
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: sudo apt install -y libgraph-easy-perl
- name: Install dependencies
run: opam install . --deps-only --with-test
- name: Install os gem for operating system detection
run: sudo gem install os
- name: Install Apron dependencies
if: ${{ matrix.apron }}
run: opam install apron mlgmpidl
- name: Install Z3 dependencies
if: ${{ matrix.z3 }}
run: opam install z3
- name: Build
run: ./make.sh nat
- name: Download Linux headers
run: ./make.sh headers
- name: Test
run: opam exec -- dune runtest
- name: Test marshal regression # not part of @runtest due to time
run: ruby scripts/update_suite.rb -m
lower-bounds-downgrade:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
ocaml-compiler:
- ocaml-variants.4.14.2+options,ocaml-option-flambda # matches opam lock file
name: lower-bounds (${{ matrix.os }}, ${{ matrix.ocaml-compiler }}, downgrade)
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Install graph-easy # TODO: remove if depext --with-test works (https://github.com/ocaml/opam/issues/5836)
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: sudo apt install -y libgraph-easy-perl
- name: Install dependencies
run: opam install . --deps-only --with-test
- name: Install os gem for operating system detection
run: sudo gem install os
- name: Install Apron dependencies
run: opam install apron mlgmpidl
- name: Downgrade dependencies
# without "+removed" in criteria, because it also removes optional apron
run: opam install --solver=builtin-0install --criteria="+count[version-lag,solution]" . --deps-only --with-test
- name: Build
run: ./make.sh nat
- name: Download Linux headers
run: ./make.sh headers
- name: Test
run: opam exec -- dune runtest
- name: Test marshal regression # not part of @runtest due to time
run: ruby scripts/update_suite.rb -m
opam-install:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-latest
ocaml-compiler:
- ocaml-variants.4.14.2+options,ocaml-option-flambda # matches opam lock file
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Install graph-easy # TODO: remove if depext --with-test works (https://github.com/ocaml/opam/issues/5836)
if: ${{ startsWith(matrix.os, 'ubuntu') }}
run: sudo apt install -y libgraph-easy-perl
- name: Install Goblint with test
run: opam install goblint --with-test
- name: Install Apron dependencies
run: opam install apron mlgmpidl
- name: Symlink installed goblint to repository # because tests want to use locally built one
run: ln -s $(opam exec -- which goblint) goblint
- name: Download Linux headers
run: ./make.sh headers
- name: Set gobopt with pre.kernel-root # because linux-headers are not installed
run: echo "gobopt=--set pre.kernel-root $PWD/linux-headers" >> $GITHUB_ENV
- name: Test regression
run: ruby scripts/update_suite.rb -s
- name: Test apron regression # skipped by default but CI has apron, so explicitly test group (which ignores skipping -- it's now a feature!)
# if: ${{ matrix.apron }}
run: |
ruby scripts/update_suite.rb group apron -s
ruby scripts/update_suite.rb group apron2 -s
- name: Test apron octagon regression # skipped by default but CI has apron, so explicitly test group (which ignores skipping -- it's now a feature!)
run: ruby scripts/update_suite.rb group octagon -s
- name: Test apron affeq regression # skipped by default but CI has apron, so explicitly test group (which ignores skipping -- it's now a feature!)
run: ruby scripts/update_suite.rb group affeq -s
- name: Test apron regression (Mukherjee et. al SAS '17 paper') # skipped by default but CI has apron, so explicitly test group (which ignores skipping -- it's now a feature!)
# if: ${{ matrix.apron }}
run: ruby scripts/update_suite.rb group apron-mukherjee -s
- name: Test marshal regression
run: ruby scripts/update_suite.rb -m -s
- name: Test incremental regression
run: ruby scripts/update_suite.rb -i -s
- name: Test incremental regression with cfg comparison
run: ruby scripts/update_suite.rb -c -s
gobview:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
ocaml-compiler:
- ocaml-variants.5.0.0+options,ocaml-option-flambda
node-version:
- 14
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Set up OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v3
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: opam install . --deps-only
- name: Setup Gobview
run: ./make.sh setup_gobview
- name: Build
run: ./make.sh nat
- name: Build Gobview
run: ./make.sh view
- name: Install selenium
run: pip3 install selenium webdriver-manager
- name: Test Gobview
run: |
python3 scripts/test-gobview.py