Skip to content

updated for the new lab build #19

updated for the new lab build

updated for the new lab build #19

Workflow file for this run

name: Mac CI Tests
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
platform: [ macos-latest]
runs-on: ${{ matrix.platform }}
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 -DON_CI=1 -DCMAKE_TOOLCHAIN_FILE=~/vcpkg/scripts/buildsystems/vcpkg.cmake -DVCPKG_MANIFEST_DIR=../manifest/ ..
- name: Build
run: |
cd build
cmake --build .
- name: Test
run: |
build/Bullet/BulletBoilerPlate
build/Eigen/EigenBoilerPlate
build/fmt/FMTBoilerPlate
build/glm/GLMBoilerPlate
build/GTest/GTestBoilerPlate