Skip to content

fixed engine path (#375) #21

fixed engine path (#375)

fixed engine path (#375) #21

Workflow file for this run

name: ZEngine macOS Build
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
jobs:
macOS-Intel-Build:
runs-on: macos-13
strategy:
matrix:
buildConfiguration: [Debug, Release]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: CMake Build
run: .\Scripts\BuildEngine.ps1 -Configurations ${{matrix.buildConfiguration}}
shell: pwsh
macOS-Silicon-Build:
runs-on: macos-latest
strategy:
matrix:
buildConfiguration: [Debug, Release]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: CMake Build
run: .\Scripts\BuildEngine.ps1 -Configurations ${{matrix.buildConfiguration}}
shell: pwsh