hard-coded path #61
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: 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_ROOT=D:/a/puara-gestures/puara-gestures/3rdparty/boost 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: Debug Paths | |
run: | | |
echo "Workspace: ${{ github.workspace }}" | |
ls -R ${{ github.workspace }} | |
- name: Build Project | |
uses: threeal/[email protected] | |
with: | |
options: | | |
PUARA_GESTURES_ENABLE_STANDALONE=0 | |
${{ matrix.config.cmake_options }} |