-
Notifications
You must be signed in to change notification settings - Fork 42
393 lines (330 loc) · 9.65 KB
/
default.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
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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
name: Links main workflow
on:
pull_request:
branches: master
push:
branches: [master]
schedule:
# Prime the caches every Monday
- cron: 0 1 * * MON
jobs:
rule-check:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
ocaml-compiler:
- 4.14.1
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- run: git diff-index --quiet HEAD --
shell: bash
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install -y ocamlformat.0.25.1
- name: Ad-hoc rule check
run: |
eval $(opam config env)
make rule-check
shell: bash
build-doc:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install system dependencies
run: |
sudo apt-get install -y python3-setuptools python3-pip
pip3 install -U Sphinx
shell: bash
- name: Compile documentation
run: make doc
shell: bash
interpreter:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
ocaml-compiler:
- 4.14.1
- 5.0.0
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install -y ounit2
- name: Install Links dependencies
run: >-
opam install
./links.opam
--deps-only
- name: Build Links from source
run: |
eval $(opam env)
make all-ci
shell: bash
- name: Run interpreter testsuite
run: |
eval $(opam env)
make tests
./run-tests nodb-unit-tests
shell: bash
postgres-mysql8-sqlite3:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
ocaml-compiler:
- 4.14.1
- 5.0.0
runs-on: ${{ matrix.os }}
services:
postgres:
image: postgres:12
env:
POSTGRES_USER: links
POSTGRES_PASSWORD: links
ports:
- 5433:5432
mysql:
image: mysql:8.0
env:
MYSQL_USER: links
MYSQL_PASSWORD: links
MYSQL_ROOT_PASSWORD: links
MYSQL_DATABASE: links
MYSQL_ROOT_HOST: "%"
ports:
- 3306:3306
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s
--health-timeout=5s
--health-retries=3
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install system dependencies
run: sudo apt-get install -y libev-dev
shell: bash
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install -y conf-libev
- run: opam install -y ounit2
- name: Install Links dependencies
run: >-
opam install
./links.opam
./links-postgresql.opam
./links-mysql8.opam
./links-sqlite3.opam
--deps-only
--ignore-constraints-on=links
- name: Build Links from source
run: |
eval $(opam env)
make all-ci
shell: bash
- name: Run database testsuite
run: |
eval $(opam env)
./run-database-tests tests/database -d all
./run-database-tests tests/shredding -d all
./run-database-tests tests/relational-lenses -d all
./run-tests db-unit-tests
env:
# TODO(dhil): I do not know how to index into the
# environments of either service. Until we figure out how to
# do it, we will just duplicate information here.
LINKS_POSTGRES_HOST: localhost
LINKS_POSTGRES_USER: links
LINKS_POSTGRES_PASSWORD: links
LINKS_POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
LINKS_MYSQL8_HOST: 127.0.0.1
LINKS_MYSQL8_USER: links
LINKS_MYSQL8_PASSWORD: links
LINKS_MYSQL8_PORT: ${{ job.services.mysql.ports[3306] }}
shell: bash
links-mysql8_mysql57:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-20.04
ocaml-compiler:
- 4.14.1
- 5.0.0
runs-on: ${{ matrix.os }}
services:
mysql:
image: mysql:5.7
env:
MYSQL_USER: links
MYSQL_PASSWORD: links
MYSQL_ROOT_PASSWORD: links
MYSQL_DATABASE: links
MYSQL_ROOT_HOST: "%"
ports:
- 3306:3306
options: >-
--health-cmd="mysqladmin ping"
--health-interval=10s
--health-timeout=5s
--health-retries=3
steps:
- name: Show MySQL client and server versions
run: |
mysql --version
mysql -h 127.0.0.1 -P 3306 -uroot -plinks -e "SHOW VARIABLES LIKE '%version%';"
shell: bash
- name: Checkout code
uses: actions/checkout@v2
- name: Install system dependencies
run: sudo apt-get install -y libev-dev
shell: bash
- name: Use OCaml ${{ matrix.ocaml-compiler }}
uses: ocaml/setup-ocaml@v2
with:
ocaml-compiler: ${{ matrix.ocaml-compiler }}
- run: opam install -y conf-libev
- name: Install Links dependencies
run: >-
opam install
./links.opam
./links-mysql8.opam
--deps-only
--ignore-constraints-on=links
- name: Build Links from source
run: |
eval $(opam env)
make all-ci
shell: bash
- name: Run database testsuite
run: |
eval $(opam env)
./run-database-tests tests/database -d mysql8
./run-database-tests tests/relational-lenses -d mysql8
env:
# TODO(dhil): I do not know how to index into the
# environments of either service. Until we figure out how to
# do it, we will just duplicate information here.
LINKS_MYSQL8_HOST: 127.0.0.1
LINKS_MYSQL8_USER: links
LINKS_MYSQL8_PASSWORD: links
LINKS_MYSQL8_PORT: ${{ job.services.mysql.ports[3306] }}
shell: bash
js-runtime-lint:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup NPM
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install jshint
run: npm install jshint
- name: Run jshint
run: npm exec jshint -- --config lib/js/jshint.config.json --show-non-errors lib/js/jslib.js
# webbrowser:
# strategy:
# fail-fast: false
# matrix:
# os:
# - ubuntu-20.04
# ocaml-compiler:
# - 4.08.0
# browser:
# - firefox
# # - chrome # The Selenium Chrome driver does not work with
# # the latest stable Chrome browser. Disabled until we have a robust solution.
# env:
# LINKS_BROWSER: ${{ matrix.browser }}
# NPM_DIR: tests/headless
# runs-on: ${{ matrix.os }}
# services:
# postgres:
# image: postgres:12
# env:
# POSTGRES_DB: links
# POSTGRES_PASSWORD: links
# POSTGRES_PORT: 5432
# POSTGRES_USER: links
# ports:
# - 5432:5432
# options: >-
# --health-cmd pg_isready
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
# steps:
# - name: Checkout code
# uses: actions/checkout@v2
# - name: Install system dependencies
# run: sudo apt-get install -y libev-dev
# shell: bash
# - name: Use OCaml ${{ matrix.ocaml-compiler }}
# uses: ocaml/setup-ocaml@v2
# with:
# ocaml-compiler: ${{ matrix.ocaml-compiler }}
# - run: opam install -y conf-libev
# - run: opam install -y ounit2
# - name: Install Links dependencies
# run: >-
# opam install
# ./links.opam
# ./links-postgresql.opam
# --deps-only
# --ignore-constraints-on=links
# - name: Build Links from source
# run: |
# eval $(opam env)
# make all-ci
# shell: bash
# - uses: actions/checkout@v2
# with:
# repository: dhil/links-database-setup
# path: ./links-database-setup
# - name: Populate database
# run: |
# for f in `ls *.sql`; do
# createdb -h localhost -U links -O links ${f%.sql};
# done
# for f in `ls *.sql`; do psql -h localhost -U links -d ${f%.sql} < $f; done
# working-directory: links-database-setup
# env:
# PGPASSWORD: links
# - run: npm ci
# working-directory: ${{ env.NPM_DIR }}
# - run: npm test
# working-directory: ${{ env.NPM_DIR }}
# env:
# LINKS_POSTGRES_HOST: localhost
# LINKS_POSTGRES_USER: links
# LINKS_POSTGRES_PASSWORD: links
# LINKS_POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }}
# POSTGRES_USER: links
# POSTGRES_PASSWORD: links