forked from Cubitect/cubiomes-viewer
-
Notifications
You must be signed in to change notification settings - Fork 9
51 lines (42 loc) · 1.3 KB
/
macos-release.yaml
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
name: macOS Release
on:
push:
branches:
- 'trunk'
tags:
- 'v*'
env:
PROG: cubiomes-viewer
SOURCE_DIR: ${{github.workspace}}
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
aqtversion: '==3.1.*'
version: '5.15.2'
archives: 'x86_64 qtbase qttools'
cache: true
setup-python: false
- name: Build
working-directory: ${{env.SOURCE_DIR}}
run: |
qmake CONFIG+=release ${{env.SOURCE_DIR}}
CFLAGS="-isysroot /Applications/Xcode_14.2.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.1.sdk" make
- name: Deploy
working-directory: ${{env.SOURCE_DIR}}
run: |
macdeployqt ${{env.PROG}}.app -dmg -no-plugins
./${{env.PROG}}.app/Contents/MacOS/${{env.PROG}} --version
otool -L ${{env.PROG}}.app/Contents/MacOS/${{env.PROG}}
- name: Save build artifact
uses: actions/upload-artifact@v4
with:
name: ${{env.PROG}}-macos
path: ${{env.SOURCE_DIR}}/${{env.PROG}}.dmg