Skip to content

Merge branch 'main' of github.com:/NCCA/NGL #240

Merge branch 'main' of github.com:/NCCA/NGL

Merge branch 'main' of github.com:/NCCA/NGL #240

Workflow file for this run

name: NGL MacOS
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: install vcpkg
run : |
git clone --depth 1 https://github.com/microsoft/vcpkg ~/vcpkg
cd ~/vcpkg
./bootstrap-vcpkg.sh
- name: Configure
run: |
mkdir build
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=~/vcpkg/scripts/buildsystems/vcpkg.cmake -DNO_OIIO=1 -DVCPKG_MANIFEST_DIR=../manifest/ci/ .. \
- name: Build
run: |
cd build
cmake --build .
- name: Test
run: |
cd build
./NGLTests -g