Skip to content

Commit d416e4c

Browse files
committedJan 3, 2025
Added MacOS github action
1 parent d1315f3 commit d416e4c

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
 

‎.github/workflows/cmake_macos.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: MacOS
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
7+
jobs:
8+
build-macos:
9+
name: MacOS
10+
runs-on: macos-latest
11+
steps:
12+
- name: Checkout source
13+
uses: actions/checkout@v4
14+
- name: Install Qt
15+
uses: jurplel/install-qt-action@v4
16+
with:
17+
version: '6.6.*'
18+
- name: Configure
19+
run: cmake -B macos -DCMAKE_BUILD_TYPE=Release
20+
- name: Build
21+
run: cmake --build macos --parallel

0 commit comments

Comments
 (0)