From 85c65c0e444f39ab54077615646afe342908bb5a Mon Sep 17 00:00:00 2001 From: lschmid Date: Sat, 15 Jun 2024 13:21:40 -0400 Subject: [PATCH] fix disable --- .github/workflows/cmake_build.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cmake_build.yml b/.github/workflows/cmake_build.yml index 7608b6e..f4b090d 100644 --- a/.github/workflows/cmake_build.yml +++ b/.github/workflows/cmake_build.yml @@ -27,14 +27,15 @@ jobs: cmake -S . -B build -G "Unix Makefiles" cmake --build build sudo cmake --install build + + # TODO(lschmid) messes with finding glog somehow - - name: Configure CMake - shell: bash - run: | - cd ${{github.workspace}} - cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + # - name: Configure CMake + # shell: bash + # run: | + # cd ${{github.workspace}} + # cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - # TODO(lschmid) messes with finding glog somehow # - name: Build # shell: bash # run: cmake --build ${{github.workspace}}/build