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
|
name: Build - macOS
on:
workflow_call:
jobs:
build:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-14]
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: |
mkdir build && cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" -DcustomTap=1 -DENABLE_TESTING=ON -Dsqlcipher=1 ..
- 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 }}
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 }}
path: DB.Browser.for.*.dmg
|