-
-
Notifications
You must be signed in to change notification settings - Fork 4
55 lines (49 loc) · 1.6 KB
/
macos.yml
File metadata and controls
55 lines (49 loc) · 1.6 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
name: macOS
on:
push:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-14, macos-15] # macos-14 = M1, macos-15 = M2/M3
compiler: [clang++]
build_type: [Release]
standard: [23]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
run: |
# XQuartz provides X11 on macOS
brew install xquartz
# Note: XQuartz needs to be started, but headless build should work
cmake -E make_directory ${{runner.workspace}}/build
- name: Configure
working-directory: ${{runner.workspace}}/build
env:
CXX: ${{ matrix.compiler }}
run: |
# Set X11 paths for macOS
export PKG_CONFIG_PATH="/opt/X11/lib/pkgconfig:$PKG_CONFIG_PATH"
cmake -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \
-DCMAKE_CXX_STANDARD=${{matrix.standard}} \
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
-DCMAKE_CXX_FLAGS="-I/opt/X11/include" \
-DCMAKE_EXE_LINKER_FLAGS="-L/opt/X11/lib" \
$GITHUB_WORKSPACE
- name: Build
working-directory: ${{runner.workspace}}/build
run: |
cpus=`sysctl -n hw.ncpu`
cmake --build . --config ${{matrix.build_type}} --parallel $cpus
- name: Test
working-directory: ${{runner.workspace}}/build
env:
CTEST_OUTPUT_ON_FAILURE: True
run: |
# Tests that don't require GUI should work
ctest -C ${{matrix.build_type}} || true
echo "Note: Some tests may fail without X11 display"