-
Notifications
You must be signed in to change notification settings - Fork 34
391 lines (390 loc) · 13.1 KB
/
Copy pathci.yml
File metadata and controls
391 lines (390 loc) · 13.1 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
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
# JULEA - Flexible storage framework
# Copyright (C) 2019-2026 Michael Kuhn
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
name: CI
on: [push, pull_request]
defaults:
run:
shell: bash
jobs:
style:
name: Style
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
show-progress: false
- name: Check format
run: |
./scripts/format.sh
- name: Check shell scripts
run: |
./scripts/check.sh
dependencies:
name: Dependencies
runs-on: ubuntu-24.04
container: ${{ matrix.os.registry }}/${{ matrix.os.image }}
timeout-minutes: 180
strategy:
fail-fast: false
matrix:
os:
- image: ubuntu:24.04-base
registry: ghcr.io/parcio/julea
compiler: gcc
compiler_spack: gcc
compiler_version: 13.3.0
- image: ubuntu:24.04-base
registry: ghcr.io/parcio/julea
compiler: clang
compiler_spack: llvm
compiler_version: 18.1.3
env:
JULEA_SPACK_COMPILER: ${{ matrix.os.compiler_spack }}@${{ matrix.os.compiler_version }}
JULEA_SPACK_DIR: /julea-dependencies
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
show-progress: false
- name: Cache dependencies
id: cache
uses: actions/cache@v5
with:
path: ${{ env.JULEA_SPACK_DIR }}
key: ${{ matrix.os.image }}-${{ matrix.os.compiler }}-${{ matrix.os.compiler_version }}-${{ hashFiles('scripts/spack', 'scripts/install-dependencies.sh') }}
- name: Install dependencies
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
run: |
./scripts/install-dependencies.sh
build:
name: Build
needs: dependencies
runs-on: ubuntu-24.04
container: ${{ matrix.os.registry }}/${{ matrix.os.image }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os:
- image: ubuntu:24.04-base
registry: ghcr.io/parcio/julea
compiler: gcc
compiler_spack: gcc
compiler_version: 13.3.0
- image: ubuntu:24.04-base
registry: ghcr.io/parcio/julea
compiler: clang
compiler_spack: llvm
compiler_version: 18.1.3
dependencies: [system, spack]
env:
JULEA_SPACK_DIR: /julea-dependencies
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
show-progress: false
- name: Install dependencies
if: ${{ matrix.dependencies == 'system' }}
run: |
apt update
apt --yes --no-install-recommends install meson ninja-build pkgconf libglib2.0-dev libbson-dev libfabric-dev libgdbm-dev liblmdb-dev libsqlite3-dev libleveldb-dev libmongoc-dev libmariadb-dev librocksdb-dev libfuse3-dev libopen-trace-format-dev librados-dev
- name: Cache dependencies
id: cache
if: ${{ matrix.dependencies == 'spack' }}
uses: actions/cache/restore@v5
with:
path: ${{ env.JULEA_SPACK_DIR }}
key: ${{ matrix.os.image }}-${{ matrix.os.compiler }}-${{ matrix.os.compiler_version }}-${{ hashFiles('scripts/spack', 'scripts/install-dependencies.sh') }}
- name: Check dependencies
if: ${{ matrix.dependencies == 'spack' && steps.cache.outputs.cache-hit != 'true' }}
run: |
exit 1
- name: Configure, build and install
env:
CC: ${{ matrix.os.compiler }}
run: |
./scripts/ci/build.sh release "${{ matrix.dependencies }}"
tests:
name: Tests
needs: dependencies
runs-on: ubuntu-24.04
container: ${{ matrix.os.registry }}/${{ matrix.os.image }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os:
- image: ubuntu:24.04-base
registry: ghcr.io/parcio/julea
compiler: gcc
compiler_spack: gcc
compiler_version: 13.3.0
- image: ubuntu:24.04-base
registry: ghcr.io/parcio/julea
compiler: clang
compiler_spack: llvm
compiler_version: 18.1.3
dependencies: [system, spack]
julea:
# Default
- object: posix
kv: lmdb
db: sqlite
# Object backends
- object: gio
kv: lmdb
db: sqlite
# KV backends
- object: posix
kv: gdbm
db: sqlite
- object: posix
kv: mongodb
db: sqlite
- object: posix
kv: leveldb
db: sqlite
- object: posix
kv: rocksdb
db: sqlite
- object: posix
kv: sqlite
db: sqlite
# DB backends
- object: posix
kv: lmdb
db: mysql
db-server: mysql
- object: posix
kv: lmdb
db: mysql
db-server: mariadb
exclude:
# FIXME Ubuntu 24.04's RocksDB triggers asan
- os:
image: ubuntu:24.04-base
dependencies: system
julea:
kv: rocksdb
services:
mariadb:
image: ${{ matrix.julea.db == 'mysql' && matrix.julea.db-server == 'mariadb' && 'docker.io/library/mariadb' || '' }}
env:
MARIADB_RANDOM_ROOT_PASSWORD: yes
MARIADB_DATABASE: juleadb
MARIADB_USER: julea
MARIADB_PASSWORD: aeluj
mongodb:
image: ${{ matrix.julea.kv == 'mongodb' && 'docker.io/library/mongo' || '' }}
mysql:
image: ${{ matrix.julea.db == 'mysql' && matrix.julea.db-server == 'mysql' && 'docker.io/library/mysql' || '' }}
env:
MYSQL_RANDOM_ROOT_PASSWORD: yes
MYSQL_DATABASE: juleadb
MYSQL_USER: julea
MYSQL_PASSWORD: aeluj
env:
JULEA_SPACK_DIR: /julea-dependencies
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
show-progress: false
- name: Install dependencies
if: ${{ matrix.dependencies == 'system' }}
run: |
apt update
apt --yes --no-install-recommends install meson ninja-build pkgconf libglib2.0-dev libbson-dev libfabric-dev libgdbm-dev liblmdb-dev libsqlite3-dev libleveldb-dev libmongoc-dev libmariadb-dev librocksdb-dev libfuse3-dev libopen-trace-format-dev librados-dev
- name: Cache dependencies
id: cache
if: ${{ matrix.dependencies == 'spack' }}
uses: actions/cache/restore@v5
with:
path: ${{ env.JULEA_SPACK_DIR }}
key: ${{ matrix.os.image }}-${{ matrix.os.compiler }}-${{ matrix.os.compiler_version }}-${{ hashFiles('scripts/spack', 'scripts/install-dependencies.sh') }}
- name: Check dependencies
if: ${{ matrix.dependencies == 'spack' && steps.cache.outputs.cache-hit != 'true' }}
run: |
exit 1
- name: Configure and build
env:
CC: ${{ matrix.os.compiler }}
run: |
./scripts/ci/build.sh debug "${{ matrix.dependencies }}"
- name: Create configuration
run: |
. scripts/environment.sh
JULEA_KV_PATH="/tmp/julea/kv/${{ matrix.julea.kv }}"
if test "${{ matrix.julea.kv }}" = 'mongodb'; then JULEA_KV_PATH='mongodb:juleadb'; fi
JULEA_DB_PATH="/tmp/julea/db/${{ matrix.julea.db }}"
if test "${{ matrix.julea.db }}" = 'mysql'; then JULEA_DB_PATH='${{ matrix.julea.db-server }}:juleadb:julea:aeluj'; fi
julea-config --user --object-servers="$(hostname)" --kv-servers="$(hostname)" --db-servers="$(hostname)" --object-backend="${{ matrix.julea.object }}" --object-path="/tmp/julea/object/${{ matrix.julea.object }}" --kv-backend="${{ matrix.julea.kv }}" --kv-path="${JULEA_KV_PATH}" --db-backend="${{ matrix.julea.db }}" --db-path="${JULEA_DB_PATH}"
- name: Tests
run: |
. scripts/environment.sh
./scripts/setup.sh start
./scripts/test.sh
sleep 10
./scripts/test.sh
./scripts/setup.sh stop
- name: HDF5 Tests
env:
LSAN_OPTIONS: exitcode=0
run: |
. scripts/environment.sh
./scripts/setup.sh start
export HDF5_VOL_CONNECTOR=julea-kv
./scripts/test.sh -r /hdf5
sleep 10
./scripts/test.sh -r /hdf5
sleep 10
export HDF5_VOL_CONNECTOR=julea-db
./scripts/test.sh -r /hdf5
sleep 10
./scripts/test.sh -r /hdf5
./scripts/setup.sh stop
- name: Benchmarks
if: ${{ matrix.julea.object == 'posix' && matrix.julea.kv == 'lmdb' && matrix.julea.db == 'sqlite' }}
run: |
. scripts/environment.sh
./scripts/setup.sh start
./scripts/benchmark.sh --duration=0
sleep 10
./scripts/benchmark.sh --duration=0
./scripts/setup.sh stop
doxygen:
name: Doxygen
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
show-progress: false
- name: Install dependencies
run: |
sudo apt update || true
sudo apt --yes --no-install-recommends install doxygen
- name: Generate documentation
run: |
doxygen
- name: Upload doxygen
uses: actions/upload-artifact@v7
with:
name: doxygen
path: html
coverage:
# FIXME Reduce redundancies
# FIXME Increase coverage (currently, only one configuration runs)
name: Coverage
needs: dependencies
runs-on: ubuntu-24.04
container: ghcr.io/parcio/julea/ubuntu:24.04-base
timeout-minutes: 60
env:
JULEA_SPACK_DIR: /julea-dependencies
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
show-progress: false
- name: Cache dependencies
id: cache
uses: actions/cache/restore@v5
with:
path: ${{ env.JULEA_SPACK_DIR }}
key: ubuntu:24.04-base-gcc-13.3.0-${{ hashFiles('scripts/spack', 'scripts/install-dependencies.sh') }}
- name: Check dependencies
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
run: |
exit 1
- name: Configure and build
env:
CC: gcc
run: |
./scripts/ci/build.sh coverage spack
- name: Create configuration
run: |
. scripts/environment.sh
julea-config --user --object-servers="$(hostname)" --kv-servers="$(hostname)" --db-servers="$(hostname)" --object-backend=posix --object-path=/tmp/julea/object/posix --kv-backend=lmdb --kv-path=/tmp/julea/kv/lmdb --db-backend=sqlite --db-path=/tmp/julea/db/sqlite
- name: Tests
env:
HDF5_VOL_CONNECTOR: julea-db
LSAN_OPTIONS: exitcode=0
run: |
. scripts/environment.sh
./scripts/setup.sh start
./scripts/test.sh
./scripts/setup.sh stop
- name: Generate coverage
run: |
. scripts/environment.sh
ninja -C bld coverage
- name: Upload coverage
uses: actions/upload-artifact@v7
with:
name: coverage
path: bld/meson-logs/coveragereport
publish:
name: Publish
needs: [doxygen, coverage]
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- name: Configure Pages
uses: actions/configure-pages@v6
- name: Download doxygen
uses: actions/download-artifact@v8
with:
name: doxygen
path: doxygen
- name: Download coverage
uses: actions/download-artifact@v8
with:
name: coverage
path: coverage
- name: Prepare
run: |
mv coverage doxygen/coverage
- name: Upload artifact
uses: actions/upload-pages-artifact@v5
with:
path: doxygen
deploy:
name: Deploy
needs: publish
runs-on: ubuntu-24.04
timeout-minutes: 30
if: ${{ github.ref == 'refs/heads/master' }}
permissions:
id-token: write
pages: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy Pages
id: deployment
uses: actions/deploy-pages@v5