Skip to content

update cmake ci

update cmake ci #18

Workflow file for this run

name: "Ubuntu-latest: Build and Test"
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
# checkout the code
- uses: actions/checkout@v4
# setup package dependencies
- name: Dependencies
run: |
sudo apt install libgtest-dev libeigen3-dev
# configure repo
- name: Configure
run: |
cmake -B ${{github.workspace}}/build \
-DCMAKE_BUILD_TYPE=Release \
-DSPATIAL_HASH_BUILD_TESTS=ON
# build repo
- name: Build
run: cmake --build ${{github.workspace}}/build --config Release
# run unit tests
- name: Test
working-directory: ${{github.workspace}}/build
run: ctest -C Release