-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
98 lines (86 loc) · 3.58 KB
/
build-macos.yml
File metadata and controls
98 lines (86 loc) · 3.58 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: Build - macOS
on:
workflow_call:
inputs:
NIGHTLY:
default: false
type: boolean
jobs:
build:
name: ${{ matrix.os }} - SQLCipher ${{ matrix.sqlcipher }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-14]
sqlcipher: ["0", "1"]
env:
MACOSX_DEPLOYMENT_TARGET: 10.13
steps:
- name: Checkout
uses: actions/checkout@v4
# Uninstall Mono, which is included by default in GitHub-hosted macOS runners,
# as it interferes with referencing our own compiled SQLite libraries.
- name: Uninstall Mono
run: |
sudo rm -rfv /Library/Frameworks/Mono.framework
sudo pkgutil --forget com.xamarin.mono-MDK.pkg
sudo rm /etc/paths.d/mono-commands
- name: Install dependencies
run: |
brew update
brew tap sqlitebrowser/tap
brew unlink openssl@3
brew install sqlb-openssl@3
brew install sqlb-qt@5 sqlb-sqlcipher sqlb-sqlite ninja
npm install -g appdmg
- name: Configure build
run: |
if [ "${{ inputs.NIGHTLY }}" = "true" ]; then
if [ "${{ matrix.sqlcipher }}" = "1" ]; then
sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLCipher Nightly"/' config/platform_apple.cmake
else
sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLite Nightly"/' config/platform_apple.cmake
fi
else
if [ "${{ matrix.sqlcipher }}" = "1" ]; then
sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLCipher-dev-'$(git rev-parse --short --verify HEAD)'"/' config/platform_apple.cmake
else
sed -i "" 's/"DB Browser for SQLite"/"DB Browser for SQLite-dev-'$(git rev-parse --short --verify HEAD)'"/' config/platform_apple.cmake
fi
fi
mkdir build && cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=14 -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" -DcustomTap=1 -DENABLE_TESTING=ON -Dsqlcipher=${{ matrix.sqlcipher }} ..
- name: Build
working-directory: ./build
run: ninja
- name: Tests
working-directory: ./build
run: ninja test
- name: Build Extension
run: clang -I /opt/homebrew/opt/sqlb-sqlite/include -L /opt/homebrew/opt/sqlb-sqlite/lib -fno-common -dynamiclib src/extensions/extension-formats.c
- if: github.event_name != 'pull_request'
name: Notarization
id: notarization
run: chmod +x ./installer/macos/notarize.sh && ./installer/macos/notarize.sh
env:
APPLE_ID: ${{ secrets.MACOS_CODESIGN_APPLE_ID }}
APPLE_PW: ${{ secrets.MACOS_CODESIGN_APPLE_PW }}
DEV_ID: ${{ secrets.MACOS_CODESIGN_DEV_ID }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
KEYCHAIN_PW: ${{ secrets.MACOS_CODESIGN_KEYCHAIN_PW }}
P12: ${{ secrets.MACOS_CODESIGN_P12 }}
P12_PW: ${{ secrets.MACOS_CODESIGN_P12_PW }}
NIGHTLY: ${{ inputs.NIGHTLY }}
SQLCIPHER: ${{ matrix.sqlcipher }}
TEAM_ID: ${{ secrets.MACOS_CODESIGN_TEAM_ID }}
- if: steps.notarization.conclusion != 'skipped'
name: Clear Keychain
run: security delete-keychain $RUNNER_TEMP/app-signing.keychain-db
continue-on-error: true
- if: github.event_name != 'pull_request'
name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: build-artifacts-${{ matrix.os }}-${{ matrix.sqlcipher }}
path: DB.Browser.for.*.dmg