forked from shibatch/sleef
-
Notifications
You must be signed in to change notification settings - Fork 0
579 lines (536 loc) · 19.6 KB
/
build_and_test.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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
name: "Build & Test"
on:
# allow direct trigger
workflow_dispatch:
push:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
env:
COMMON_CMAKE_FLAGS: >
-DSLEEF_SHOW_CONFIG=1
-DSLEEF_BUILD_GNUABI_LIBS=ON
-DSLEEF_BUILD_INLINE_HEADERS=ON
-DSLEEF_BUILD_DFT=ON
-DSLEEF_BUILD_QUAD=ON
-DSLEEF_BUILD_SCALAR_LIB=ON
-DSLEEF_BUILD_STATIC_TEST_BINS=ON
-DSLEEF_ENFORCE_TESTER=ON
-DSLEEF_ENFORCE_TESTER3=ON
jobs:
build-native:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
compiler: [gcc, llvm]
include:
- compiler: gcc
compiler_version: 11
- compiler: gcc
compiler_version: 12
- compiler: llvm
compiler_version: 17
- compiler: llvm
compiler_version: 18
name: build-native-${{ matrix.compiler }}-${{ matrix.compiler_version }}
steps:
- uses: actions/checkout@v4.1.1
with:
persist-credentials: false
- name: Install dependencies
run: |
sudo apt-get update -y -qq
sudo apt-get install -y -qq build-essential curl ninja-build libgmp-dev libmpfr-dev
# Needed for llvm builds as well for target libraries
- name: Install gcc
run: |
sudo apt-get install -y -qq gcc${{ matrix.compiler == 'gcc' && format('-{0}', matrix.compiler_version) || '' }}
- name: Install llvm
run: |
curl -o llvm.sh https://apt.llvm.org/llvm.sh
chmod u+x llvm.sh
sudo ./llvm.sh ${{ matrix.compiler_version }}
sudo ln -srf $(which clang-${{ matrix.compiler_version }}) /usr/bin/clang
rm llvm.sh
if: ${{ matrix.compiler == 'llvm' }}
- name: Build native
shell: bash -ex -o pipefail {0}
run: |
EXTRA_CMAKE_FLAGS="-DSLEEF_ENFORCE_SSE2=ON -DSLEEF_ENFORCE_SSE4=ON -DSLEEF_ENFORCE_AVX=ON -DSLEEF_ENFORCE_AVX=ON -DSLEEF_ENFORCE_AVX2=ON -DSLEEF_ENFORCE_AVX512F=ON -DSLEEF_ENFORCE_FMA4=ON"
cmake -S . -B _build-native -GNinja \
-DCMAKE_INSTALL_PREFIX=$(pwd)/_install-native \
-DCMAKE_TOOLCHAIN_FILE=$(pwd)/toolchains/native-${{ matrix.compiler }}.cmake \
${COMMON_CMAKE_FLAGS} \
${EXTRA_CMAKE_FLAGS}
cmake --build _build-native
cmake --install _build-native
- name: Upload build-native-${{ matrix.compiler }}-${{ matrix.compiler_version }} artifacts
uses: actions/upload-artifact@v3
with:
name: build-native-${{ matrix.compiler }}-${{ matrix.compiler_version }}
path: |
_build-*
_install-*
if: always()
test-native:
runs-on: ubuntu-latest
needs: [build-native]
strategy:
fail-fast: false
matrix:
compiler: [gcc, llvm]
include:
- compiler: gcc
compiler_version: 11
- compiler: gcc
compiler_version: 12
- compiler: llvm
compiler_version: 17
- compiler: llvm
compiler_version: 18
name: test-native-${{ matrix.compiler }}-${{ matrix.compiler_version }}
steps:
- uses: actions/checkout@v4.1.1
with:
persist-credentials: false
- name: Install dependencies
run: sudo apt-get update -y -qq && sudo apt-get install -y -qq libgmp-dev libmpfr-dev
- name: Print host CPU info
run: |
cat /proc/cpuinfo
- name: Download build-native-${{ matrix.compiler }}-${{ matrix.compiler_version }} artifacts
uses: actions/download-artifact@v3
with:
name: build-native-${{ matrix.compiler }}-${{ matrix.compiler_version }}
- name: Fix _build-native permissions
run: |
chmod +x _build-native/bin/*
- name: Test native
env:
CTEST_OUTPUT_ON_FAILURE: "TRUE"
run: |
cd _build-native
ctest -j$(nproc)
- name: Upload test-native artifacts
uses: actions/upload-artifact@v3
with:
name: test-native
path: |
_build-native/Testing
if: always()
build-cross:
runs-on: ubuntu-latest
needs: [build-native]
strategy:
fail-fast: false
matrix:
arch: [aarch64, armhf, ppc64el, s390x, riscv64]
compiler: [gcc, llvm]
include:
- arch: armhf
binfmt: arm
gnupkg: -arm-linux-gnueabihf
compiler: gcc
compiler_version: 11
- arch: armhf
binfmt: arm
gnupkg: -arm-linux-gnueabihf
compiler: gcc
compiler_version: 12
- arch: armhf
binfmt: arm
gnupkg: -arm-linux-gnueabihf
compiler: llvm
compiler_version: 17
- arch: armhf
binfmt: arm
gnupkg: -arm-linux-gnueabihf
compiler: llvm
compiler_version: 18
- arch: ppc64el
binfmt: ppc64le
gnupkg: -powerpc64le-linux-gnu
compiler: gcc
compiler_version: 11
- arch: ppc64el
binfmt: ppc64le
gnupkg: -powerpc64le-linux-gnu
compiler: gcc
compiler_version: 12
- arch: ppc64el
binfmt: ppc64le
gnupkg: -powerpc64le-linux-gnu
compiler: llvm
compiler_version: 17
- arch: ppc64el
binfmt: ppc64le
gnupkg: -powerpc64le-linux-gnu
compiler: llvm
compiler_version: 18
- arch: aarch64
debarch: arm64
compiler: gcc
compiler_version: 11
- arch: aarch64
debarch: arm64
compiler: gcc
compiler_version: 12
- arch: aarch64
debarch: arm64
compiler: llvm
compiler_version: 17
- arch: aarch64
debarch: arm64
compiler: llvm
compiler_version: 18
- arch: s390x
compiler: gcc
compiler_version: 11
- arch: s390x
compiler: gcc
compiler_version: 12
- arch: s390x
compiler: llvm
compiler_version: 17
- arch: s390x
compiler: llvm
compiler_version: 18
# - arch: riscv64
# compiler: gcc
# compiler_version: 11
# - arch: riscv64
# compiler: gcc
# compiler_version: 12
- arch: riscv64
compiler: llvm
compiler_version: 17
- arch: riscv64
compiler: llvm
compiler_version: 18
exclude:
# Only GCC trunk supports the RISC-V V intrinsics and https://github.com/riscv-collab/riscv-gnu-toolchain
# doesn't track a recent enough version yet
- arch: riscv64
compiler: gcc
name: build-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.compiler_version }}
steps:
- uses: actions/checkout@v4.1.1
with:
persist-credentials: false
- name: Install dependencies
run: |
sudo apt-get update -y -qq
sudo apt-get install -y -qq build-essential curl ninja-build libgmp-dev libmpfr-dev debootstrap
# Needed for llvm builds as well for target libraries
- name: Install gcc
run: |
sudo apt-get install -y -qq gcc${{ matrix.compiler == 'gcc' && format('-{0}', matrix.compiler_version) || '' }}${{ matrix.gnupkg || format('-{0}-linux-gnu', matrix.arch) }}
- name: Install llvm
run: |
curl -o llvm.sh https://apt.llvm.org/llvm.sh
chmod u+x llvm.sh
sudo ./llvm.sh ${{ matrix.compiler_version }}
sudo ln -srf $(which clang-${{ matrix.compiler_version }}) /usr/bin/clang
rm llvm.sh
if: ${{ matrix.compiler == 'llvm' }}
- name: Setup QEMU
uses: docker/setup-qemu-action@v3.0.0
with:
platforms: ${{ matrix.binfmt || matrix.arch }}
- name: Check sysroot cache
id: check-sysroot-cache
uses: actions/cache@v3
with:
path: sysroot
key: sysroot-${{ matrix.arch }}-${{ hashFiles('./.github/workflows/build_and_test.yml') }}
- name: Create sysroot
run: |
sudo debootstrap --arch=${{ matrix.debarch || matrix.arch }} --verbose --include=fakeroot,symlinks,libmpfr-dev,libssl-dev --resolve-deps --variant=minbase --components=main,universe focal sysroot
# Remove unused files to minimize cache
sudo chroot sysroot symlinks -cr .
sudo chown ${USER} -R sysroot
rm -rf sysroot/{dev,proc,run,sys,var}
rm -rf sysroot/usr/{sbin,bin,share}
rm -rf sysroot/usr/lib/{apt,gcc,udev,systemd}
rm -rf sysroot/usr/libexec/gcc
if: steps.check-sysroot-cache.outputs.cache-hit != 'true'
- name: Download build-native-${{ matrix.compiler }}-${{ matrix.compiler_version }} artifacts
uses: actions/download-artifact@v3
with:
name: build-native-${{ matrix.compiler }}-${{ matrix.compiler_version }}
- name: Fix _build-native permissions
run: |
chmod +x _build-native/bin/*
- name: Build ${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.compiler_version }}
shell: bash -ex -o pipefail {0}
run: |
EXTRA_CMAKE_FLAGS=""
if [[ ${{ matrix.arch }} = "aarch64" ]]; then
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DSLEEF_ENFORCE_SVE=ON"
elif [[ ${{ matrix.arch }} = "armhf" ]]; then
# Disable inline headers, they just don't compile on armhf
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DSLEEF_BUILD_INLINE_HEADERS=OFF"
elif [[ ${{ matrix.arch }} = "ppc64el" ]]; then
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DSLEEF_ENFORCE_VSX=ON -DSLEEF_ENFORCE_VSX3=ON"
elif [[ ${{ matrix.arch }} = "s390x" ]]; then
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DSLEEF_ENFORCE_VXE=ON"
# Disable VXE2 support, QEMU doesn't support some instructions generated by gcc or llvm
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DSLEEF_DISABLE_VXE2=ON"
elif [[ ${{ matrix.arch }} = "riscv64" ]]; then
EXTRA_CMAKE_FLAGS="${EXTRA_CMAKE_FLAGS} -DSLEEF_ENFORCE_RVVM1=ON -DSLEEF_ENFORCE_RVVM2=ON"
fi
cmake -S . -B _build-${{ matrix.arch }} -GNinja \
-DCMAKE_INSTALL_PREFIX="$(pwd)/_install-${{ matrix.arch }}" \
-DCMAKE_TOOLCHAIN_FILE=$(pwd)/toolchains/${{ matrix.arch }}-${{ matrix.compiler }}.cmake \
-DCMAKE_SYSROOT=$(pwd)/sysroot \
-DNATIVE_BUILD_DIR="$(pwd)/_build-native" \
${COMMON_CMAKE_FLAGS} \
${EXTRA_CMAKE_FLAGS}
cmake --build _build-${{ matrix.arch }}
cmake --install _build-${{ matrix.arch }}
- name: Upload build-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.compiler_version }} artifacts
uses: actions/upload-artifact@v3
with:
name: build-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.compiler_version }}
path: |
_build-${{ matrix.arch }}
_install-${{ matrix.arch }}
if: always()
test-cross:
runs-on: ubuntu-latest
needs: [build-native, build-cross]
strategy:
fail-fast: false
matrix:
include:
# AArch64
- arch: aarch64
qemu_cpu: "max,sve=off"
compiler: gcc
compiler_version: 11
- arch: aarch64
qemu_cpu: "max,sve=on,sve128=on"
compiler: gcc
compiler_version: 12
- arch: aarch64
qemu_cpu: "max,sve=on,sve256=on"
compiler: llvm
compiler_version: 17
- arch: aarch64
qemu_cpu: "max,sve=on,sve512=on"
compiler: llvm
compiler_version: 18
- arch: aarch64
qemu_cpu: "max,sve=off"
compiler: gcc
compiler_version: 11
- arch: aarch64
qemu_cpu: "max,sve=on,sve128=on"
compiler: gcc
compiler_version: 12
- arch: aarch64
qemu_cpu: "max,sve=on,sve256=on"
compiler: llvm
compiler_version: 17
- arch: aarch64
qemu_cpu: "max,sve=on,sve512=on"
compiler: llvm
compiler_version: 18
- arch: aarch64
qemu_cpu: "max,sve=off"
compiler: gcc
compiler_version: 11
- arch: aarch64
qemu_cpu: "max,sve=on,sve128=on"
compiler: gcc
compiler_version: 12
- arch: aarch64
qemu_cpu: "max,sve=on,sve256=on"
compiler: llvm
compiler_version: 17
- arch: aarch64
qemu_cpu: "max,sve=on,sve512=on"
compiler: llvm
compiler_version: 18
- arch: aarch64
qemu_cpu: "max,sve=off"
compiler: gcc
compiler_version: 11
- arch: aarch64
qemu_cpu: "max,sve=on,sve128=on"
compiler: gcc
compiler_version: 12
- arch: aarch64
qemu_cpu: "max,sve=on,sve256=on"
compiler: llvm
compiler_version: 17
- arch: aarch64
qemu_cpu: "max,sve=on,sve512=on"
compiler: llvm
compiler_version: 18
# Aarch32
- arch: armhf
binfmt: arm
qemu_cpu: "max"
compiler: gcc
compiler_version: 11
- arch: armhf
binfmt: arm
qemu_cpu: "max"
compiler: gcc
compiler_version: 12
- arch: armhf
binfmt: arm
qemu_cpu: "max"
compiler: llvm
compiler_version: 17
- arch: armhf
binfmt: arm
qemu_cpu: "max"
compiler: llvm
compiler_version: 18
# PPC64
- arch: ppc64el
binfmt: ppc64le
qemu_cpu: "power10"
compiler: gcc
compiler_version: 11
- arch: ppc64el
binfmt: ppc64le
qemu_cpu: "power10"
compiler: gcc
compiler_version: 12
- arch: ppc64el
binfmt: ppc64le
qemu_cpu: "power10"
compiler: llvm
compiler_version: 17
- arch: ppc64el
binfmt: ppc64le
qemu_cpu: "power10"
compiler: llvm
compiler_version: 18
# IBM Z
# TODO: figure out qemu_cpu variable to make tests pass on QEMU
- arch: s390x
compiler: gcc
compiler_version: 11
- arch: s390x
compiler: gcc
compiler_version: 12
- arch: s390x
compiler: llvm
compiler_version: 17
- arch: s390x
compiler: llvm
compiler_version: 18
# RISC-V
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=false"
compiler: gcc
compiler_version: 11
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=128,elen=64,vext_spec=v1.0"
compiler: gcc
compiler_version: 11
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=256,elen=64,vext_spec=v1.0"
compiler: gcc
compiler_version: 11
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=512,elen=64,vext_spec=v1.0"
compiler: gcc
compiler_version: 11
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=false"
compiler: gcc
compiler_version: 12
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=128,elen=64,vext_spec=v1.0"
compiler: gcc
compiler_version: 12
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=256,elen=64,vext_spec=v1.0"
compiler: gcc
compiler_version: 12
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=512,elen=64,vext_spec=v1.0"
compiler: gcc
compiler_version: 12
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=false"
compiler: llvm
compiler_version: 17
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=128,elen=64,vext_spec=v1.0"
compiler: llvm
compiler_version: 17
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=256,elen=64,vext_spec=v1.0"
compiler: llvm
compiler_version: 17
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=512,elen=64,vext_spec=v1.0"
compiler: llvm
compiler_version: 17
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=false"
compiler: llvm
compiler_version: 18
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=128,elen=64,vext_spec=v1.0"
compiler: llvm
compiler_version: 18
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=256,elen=64,vext_spec=v1.0"
compiler: llvm
compiler_version: 18
- arch: riscv64
qemu_cpu: "rv64,zba=true,zbb=true,zbs=true,v=true,vlen=512,elen=64,vext_spec=v1.0"
compiler: llvm
compiler_version: 18
name: "test-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.compiler_version }} (qemu_cpu: \"${{ matrix.qemu_cpu }}\")"
steps:
- uses: actions/checkout@v4.1.1
with:
persist-credentials: false
- name: Setup QEMU
uses: docker/setup-qemu-action@v3.0.0
with:
platforms: ${{ matrix.binfmt || matrix.arch }}
- name: Install dependencies
run: sudo apt-get update -y -qq && sudo apt-get install -y -qq libgmp-dev libmpfr-dev
- name: Print host CPU info
run: |
cat /proc/cpuinfo
- name: Download build-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.compiler_version }} artifacts
uses: actions/download-artifact@v3
with:
name: build-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.compiler_version }}
- name: Download build-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.compiler_version }} artifacts
uses: actions/download-artifact@v3
with:
name: build-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.compiler_version }}
- name: Fix _build-native and _build-${{ matrix.arch }} permissions
run: |
chmod +x _build-native/bin/* _build-${{ matrix.arch }}/bin/*
- name: Test ${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.compiler_version }}
env:
CTEST_OUTPUT_ON_FAILURE: "TRUE"
run: |
if [[ -n "${{ matrix.qemu_cpu }}" ]]; then
export QEMU_CPU="${{ matrix.qemu_cpu }}"
fi
cd _build-${{ matrix.arch }}
ctest -j$(nproc)
- name: Upload test-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.compiler_version }}-${{ strategy.job-index }} artifacts
uses: actions/upload-artifact@v3
with:
name: test-${{ matrix.arch }}-${{ matrix.compiler }}-${{ matrix.compiler_version }}-${{ strategy.job-index }}
path: |
_build-${{ matrix.arch }}/Testing
if: always()