updated #1705
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: macos-build | |
on: [push] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
# - name: install macos dependencies | |
# run: | | |
# brew update | |
# brew install ninja embree | |
- name: configure | |
run: | | |
mkdir build | |
cd build | |
cmake .. -G"Unix Makefiles" -DYOCTO_OPENGL=ON -DYOCTO_EMBREE=OFF -DYOCTO_DENOISE=OFF -DYOCTO_CUDA=OFF | |
- name: build | |
run: | | |
cd build | |
cmake --build . --parallel 8 |