-
Notifications
You must be signed in to change notification settings - Fork 66
45 lines (34 loc) · 1.17 KB
/
macos.yml
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
name: macOS
on: [ push, pull_request ]
env:
BUILD_TYPE: Release
QT_VERSION: "6.8.0"
QT_ARCH: "clang_64"
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
cache: true
version: ${{env.QT_VERSION}}
arch: ${{env.QT_ARCH}}
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Configure CMake
working-directory: ${{runner.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DUSE_TESTS=ON -DUSE_LTO=ON -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64"
- name: Build
working-directory: ${{runner.workspace}}/build
run: cmake --build . --config $BUILD_TYPE
- name: Test
run: ${{runner.workspace}}/build/lib/test/spotify-qt-lib-test
- name: Package
run: macdeployqt ${{runner.workspace}}/build/spotify-qt.app -dmg -verbose=2
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: spotify-qt
path: ${{runner.workspace}}/build/spotify-qt.dmg