Skip to content

Commit

Permalink
CI: Added macOS build
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn committed Dec 21, 2024
1 parent c388282 commit 1b3eaf7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,3 +55,32 @@ jobs:
-DUSE_SHARED_HARFBUZZ=on
cmake --build build --config Release
sudo cmake --install build --config Release
macos:
name: macOS
runs-on: macos-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: Setup ccache
uses: hendrikmuhs/ccache-action@v1
with:
max-size: 50M

- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 6.8.1
arch: clang_64
cache: true

- name: Build
run: |
cmake -B build -DCMAKE_BUILD_TYPE=Release \
-DUSE_SHARED_ZLIB=on
cmake --build build --config Release
sudo cmake --install build --config Release

0 comments on commit 1b3eaf7

Please sign in to comment.