found bug in SimpleIndexVAO where the index buffer was not deleted be… #238
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: 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 |