-
Notifications
You must be signed in to change notification settings - Fork 2
47 lines (43 loc) · 1.11 KB
/
Copy pathcore-tests.yml
File metadata and controls
47 lines (43 loc) · 1.11 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
name: Core tests
on: [push, pull_request]
jobs:
build-and-test:
strategy:
fail-fast: false
matrix:
include:
- arch: x86_64
os: ubuntu
os-version: '22.04'
- arch: x86_64
os: ubuntu
os-version: '24.04'
- arch: x86_64
os: debian
os-version: bookworm
- arch: x86_64
os: debian
os-version: trixie
- arch: aarch64
os: debian
os-version: bookworm
- arch: armv7
os: debian
os-version: bookworm
- arch: x86_64
os: freebsd
os-version: '14.3'
- arch: x86_64
os: openbsd
os-version: '7.7'
uses: ./.github/workflows/build.yml
with:
arch: ${{ matrix.arch }}
os: ${{ matrix.os }}
os-version: ${{ matrix.os-version }}
cmake-args: ${{ matrix.os != 'openbsd' && matrix.arch == 'x86_64' && '-DCAPTPPD_SANITIZE=ON' || '' }}
cxxflags: -Werror
tests: true
verify: true
package: false
upload: false