Add projection in tests; include raw data files for orientation and t… #144
This file contains hidden or 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_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 }} |