From d482272207fdb4b525ee8304794ce48a828d24cc Mon Sep 17 00:00:00 2001 From: Lukas Schmid <36043993+Schmluk@users.noreply.github.com> Date: Sun, 16 Jun 2024 02:32:29 +0900 Subject: [PATCH] add root isntall permission (#1) * add root isntall permission * glog from source * root install * no glog * glog via vcpkg * disable cmake build for now * fix disable * cleanup readme * cleanup pt 2 --- .github/workflows/cmake_build.yml | 39 ------------------------------- README.md | 2 ++ 2 files changed, 2 insertions(+), 39 deletions(-) delete mode 100644 .github/workflows/cmake_build.yml diff --git a/.github/workflows/cmake_build.yml b/.github/workflows/cmake_build.yml deleted file mode 100644 index 85c7386..0000000 --- a/.github/workflows/cmake_build.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: "CMake: Build and Test" - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -env: - BUILD_TYPE: Release - -jobs: - build: - name: Build and Test - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Install Deps - shell: bash - run: | - apt-get update - apt-get install -y libeigen3-dev libgoogle-glog-dev libgtest-dev - - - name: Configure CMake - shell: bash - run: | - cd ${{github.workspace}} - cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - - - name: Build - shell: bash - run: cmake --build ${{github.workspace}}/build - - - name: Test - working-directory: ${{github.workspace}}/build - shell: bash - run: ctest -C ${{env.BUILD_TYPE}} diff --git a/README.md b/README.md index 5a30a98..611df38 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +![Build and Test](https://github.com/MIT-SPARK/Spatial-Hash/actions/workflows/catkin_build.yml/badge.svg) + # Spatial Hash A minimal library for spatial data structures based on voxel hashing.