-
Notifications
You must be signed in to change notification settings - Fork 456
61 lines (51 loc) · 1.52 KB
/
build-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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
name: macOS Build
# yamllint disable-line rule:truthy
on:
- push
jobs:
build:
name: ${{matrix.buildname}}
runs-on: ${{matrix.os}}
strategy:
matrix:
include:
- os: macos-11
buildname: macOS 10.15
create_bundle: true
steps:
- name: Checkout source code
uses: actions/checkout@v3
with:
submodules: false
fetch-depth: 1
- name: Enable ccache
uses: hendrikmuhs/[email protected]
with:
key: ${{ github.job }}-${{ matrix.os }}
- name: Set up ccache
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
- name: Install dependencies
env:
HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
run: '${{github.workspace}}/utils/github/install-macos.sh'
- name: Build with CMake
uses: lukka/run-cmake@v10
with:
configurePreset: macOS
buildPreset: macOS
- name: Create gnupg directory for tests
run: mkdir -p ~/.gnupg
- name: Create macOS bundle
if: matrix.create_bundle
working-directory: '${{runner.workspace}}/build'
run: '${{github.workspace}}/utils/github/bundle-macos.sh'
- name: Upload macOS bundle
if: matrix.create_bundle
uses: actions/upload-artifact@v3
with:
name: CopyQ.dmg
path: '${{runner.workspace}}/build/CopyQ.dmg'