Skip to content

Commit 4b3bc69

Browse files
committed
github/workflows: add jobs for macOS ARM64
1 parent e334a39 commit 4b3bc69

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,27 @@ jobs:
7575
run: cmake --build build -v
7676
- name: Install
7777
run: cmake --install build -v
78+
build-macos-arm64-debug:
79+
runs-on: macos-latest
80+
steps:
81+
- name: Install required packages
82+
run: brew update && brew install cmake
83+
- uses: actions/checkout@v4
84+
- name: Configure
85+
run: cmake -DCMAKE_BUILD_TYPE=Debug -B build
86+
- name: Build
87+
run: cmake --build build -v
88+
- name: Install
89+
run: cmake --install build -v
90+
build-macos-arm64-release:
91+
runs-on: macos-latest
92+
steps:
93+
- name: Install required packages
94+
run: brew update && brew install cmake
95+
- uses: actions/checkout@v4
96+
- name: Configure
97+
run: cmake -DCMAKE_BUILD_TYPE=Release -B build
98+
- name: Build
99+
run: cmake --build build -v
100+
- name: Install
101+
run: cmake --install build -v

0 commit comments

Comments
 (0)