Skip to content

Commit 08f1678

Browse files
committed
macos 14 ci
1 parent bd558ca commit 08f1678

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/macos-arm64.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: macOS (aarch64)
2+
on:
3+
push:
4+
branches:
5+
- main
6+
tags:
7+
- '*'
8+
pull_request:
9+
jobs:
10+
build:
11+
runs-on: macos-14
12+
steps:
13+
- name: Checkout
14+
uses: actions/checkout@v4
15+
- name: Install Clang 17
16+
run: brew install llvm@17
17+
- name: Configure
18+
run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DRPP_TEST=ON
19+
env:
20+
CXX: /usr/local/opt/llvm/bin/clang++
21+
- name: Build
22+
run: cmake --build build -- -j
23+
- name: Test
24+
run: ctest --test-dir build --output-on-failure

0 commit comments

Comments
 (0)