-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
175 lines (156 loc) · 6.47 KB
/
Copy pathcppcmake-macos.yml
File metadata and controls
175 lines (156 loc) · 6.47 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
name: Build (macOS)
on:
workflow_call:
inputs:
NIGHTLY:
default: false
type: boolean
CONSOLIDATE_DEPENDENCY_SUMMARY:
default: false
type: boolean
workflow_dispatch:
jobs:
build:
name: ${{ matrix.os }} (${{ matrix.bundle }})
runs-on: ${{ matrix.os }}
permissions:
contents: read
strategy:
fail-fast: false
matrix:
bundle: [SQLCipher, SQLite]
os: [macos-14]
env:
MACOSX_DEPLOYMENT_TARGET: 10.13
steps:
- name: Checkout
uses: actions/checkout@v7
# 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 -v /etc/paths.d/mono-commands
- name: Install dependencies
run: |
brew tap sqlitebrowser/tap
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.bundle }}" = "SQLCipher" ]; 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.bundle }}" = "SQLCipher" ]; 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 -v 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.bundle == '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 || false }}
SQLCIPHER: ${{ matrix.bundle == 'SQLCipher'}}
TEAM_ID: ${{ secrets.MACOS_CODESIGN_TEAM_ID }}
- if: always() && 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@v7
with:
name: build-artifacts-${{ matrix.os }}-${{ matrix.bundle }}
path: DB.Browser.for.*.dmg
retention-days: 1
- name: Summary
run: |
QT_VERSION=$($(brew --prefix sqlb-qt@5)/bin/qmake --version | awk '/Using Qt version/ {print $4}')
if [ "${{ matrix.bundle }}" = "SQLCipher" ]; then
OPENSSL_VERSION=$($(brew --prefix sqlb-openssl@3)/bin/openssl version | awk '{print $2}')
SQLCIPHER_VERSION=$($(brew --prefix sqlb-sqlcipher)/bin/sqlcipher ":memory:" "PRAGMA cipher_version;" | awk '{print $1}')
SQLITE_VERSION="Not applicable"
else
OPENSSL_VERSION="Not applicable"
SQLCIPHER_VERSION="Not applicable"
SQLITE_VERSION=$($(brew --prefix sqlb-sqlite)/bin/sqlite3 --version | awk '{print $1}')
fi
mkdir -p dependency-summary
SUMMARY_ROW="| Build (macOS) | ${{ matrix.os }} / ${{ matrix.bundle }} | $OPENSSL_VERSION | $QT_VERSION | $SQLCIPHER_VERSION | $SQLITE_VERSION |"
echo "$SUMMARY_ROW" > "dependency-summary/dependencies-macos-${{ matrix.os }}-${{ matrix.bundle }}.md"
- name: Upload dependency summary
uses: actions/upload-artifact@v7
with:
name: dependency-summary-macos-${{ matrix.os }}-${{ matrix.bundle }}
path: dependency-summary/*.md
retention-days: 1
summarize-dependencies:
if: always() && inputs.CONSOLIDATE_DEPENDENCY_SUMMARY != true && !cancelled()
needs: build
name: Summarize Dependencies
runs-on: ubuntu-24.04
permissions:
actions: read
contents: read
steps:
- name: Download dependency summaries
uses: actions/download-artifact@v8
continue-on-error: true
with:
pattern: dependency-summary-*
path: dependency-summary
merge-multiple: true
- name: Summary
run: |
{
echo "## Dependencies used"
echo ""
echo "| Workflow | Target | OpenSSL | Qt | SQLCipher | SQLite |"
echo "| :---: | :---: | :---: | :---: | :---: | :---: |"
} >> "$GITHUB_STEP_SUMMARY"
if [ -d dependency-summary ] && find dependency-summary -type f -name '*.md' | grep -q .; then
find dependency-summary -type f -name '*.md' -print | sort | while IFS= read -r file; do
cat "$file" >> "$GITHUB_STEP_SUMMARY"
done
else
echo "| Not available | No dependency summaries were uploaded. | - | - | - | - |" >> "$GITHUB_STEP_SUMMARY"
fi
release:
if: github.event_name == 'workflow_dispatch' && github.workflow == 'Build (macOS)'
needs: build
name: Release
permissions:
actions: read
contents: write
uses: ./.github/workflows/release.yml