Build #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [macos-latest] | |
include: | |
- os: macos-latest | |
arch: arm64 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
# - name: Install LLVM and Clang | |
# uses: KyleMayes/install-llvm-action@v2 | |
# with: | |
# version: "19.1" | |
- name: Install dependencies on macOS | |
run: | | |
brew install llvm | |
brew install boost | |
brew install ninja | |
- name: Configure CMake | |
shell: bash | |
run: > | |
cmake -B build/release | |
-DCMAKE_BUILD_TYPE=RelWithDebInfo | |
-GNinja | |
-DCMAKE_C_COMPILER="$(brew --prefix llvm)/bin/clang | |
-DCMAKE_CXX_COMPILER="$(brew --prefix llvm)/bin/clang++ | |
-DSDL_SHARED=OFF | |
-DSDL_STATIC=ON | |
-DBLEND2D_STATIC=ON | |
- name: Build neogurt | |
run: cmake --build build/release --target neogurt | |
- name: Generate package | |
run: make package | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: app-dmg | |
path: build/release/*.dmg |