Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

Merge pull request #27 from jkwak-work/master #43

Merge pull request #27 from jkwak-work/master

Merge pull request #27 from jkwak-work/master #43

Workflow file for this run

name: MacOS Build CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: MacOS Build CI
runs-on: macos-latest
strategy:
matrix:
# Might want debug once release works
configuration: ['release'] # , 'debug']
platform: ['x64']
steps:
- uses: actions/[email protected]
with:
submodules: 'true'
fetch-depth: '0'
- name: premake
run: |
PREMAKE=external/slang-binaries/premake/premake-5.0.0-alpha16/bin/osx/premake5
chmod u+x ${PREMAKE}
${PREMAKE} gmake --deps=true --no-progress=true
- name: Build
run: |
make config=${{matrix.configuration}}_${{matrix.platform}} -j`sysctl -n hw.ncpu`