Skip to content

Merge branch 'master' of https://github.com/maxicino/cinolib #167

Merge branch 'master' of https://github.com/maxicino/cinolib

Merge branch 'master' of https://github.com/maxicino/cinolib #167

Workflow file for this run

name: macos-build
on: [push]
env:
BUILD_TYPE: Release
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: configure
run: |
cd examples
mkdir build
cd build
cmake .. -G"Unix Makefiles" -Dcinolib_DIR="/Users/runner/work/cinolib/cinolib"
pwd
- name: build
run: |
cd examples
cd build
pwd
cmake --build . --parallel 8