-
Notifications
You must be signed in to change notification settings - Fork 439
50 lines (42 loc) · 947 Bytes
/
platform-tests.yml
File metadata and controls
50 lines (42 loc) · 947 Bytes
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
name: Platform Tests
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
arm64-gcc:
name: ARM64 GCC
runs-on: ubuntu-24.04-arm
steps:
- uses: actions/checkout@v4
- name: Configure
run: |
cmake -S . -B build \
-DCMAKE_CXX_STANDARD=17
- name: Build
run: cmake --build build -j4
- name: Test
run: |
cd build
ctest --output-on-failure
freebsd:
name: FreeBSD
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test in FreeBSD
id: test
uses: vmactions/freebsd-vm@v1
with:
usesh: true
prepare: |
pkg install -y cmake pkgconf
run: |
cmake -S . -B build \
-DCMAKE_CXX_STANDARD=20
cmake --build build -j4
cd build
ctest --output-on-failure