Skip to content

Merge branch 'development' into refactor/touch #85

Merge branch 'development' into refactor/touch

Merge branch 'development' into refactor/touch #85

Workflow file for this run

name: Build
on:
push:
jobs:
build-project:
strategy:
matrix:
config:
- {
os: ubuntu-latest,
cmake_options: "",
dependencies: "sudo apt update -yqq && sudo apt -yqq install libboost-dev"
}
- {
os: macos-latest,
cmake_options: "CMAKE_PREFIX_PATH=/opt/homebrew",
dependencies: "brew install boost eigen && brew link boost eigen"
}
- {
os: windows-latest,
cmake_options: "Boost_INCLUDE_DIR=D:/a/puara-gestures/puara-gestures/3rdparty",
dependencies: "choco install eigen -y --no-progress"
}
runs-on: ${{ matrix.config.os }}
steps:
- name: Checkout Project
uses: actions/checkout@v4
with:
submodules: recursive
- name: Dependencies
run: ${{ matrix.config.dependencies }}
- name: Build Project
uses: threeal/[email protected]
with:
options: |
PUARA_GESTURES_ENABLE_STANDALONE=0
${{ matrix.config.cmake_options }}