From 069a05edc9ae8cce8d6eb3936c97291b4b4535d3 Mon Sep 17 00:00:00 2001 From: Johann Dreo <75248710+jdreo@users.noreply.github.com> Date: Sat, 11 Dec 2021 18:25:53 +0100 Subject: [PATCH] Fix ubuntu debug action --- .github/workflows/build_ubuntu_debug.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_ubuntu_debug.yml b/.github/workflows/build_ubuntu_debug.yml index 2b2c27835..b2fa74830 100644 --- a/.github/workflows/build_ubuntu_debug.yml +++ b/.github/workflows/build_ubuntu_debug.yml @@ -1,4 +1,4 @@ -name: Build_Ubuntu_Debug +name: Build Debug (Ubuntu) on: push: @@ -31,7 +31,7 @@ jobs: - name: Configure # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. # See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type - run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -EDO=ON -EDO_USE_LIB=Eigen3 -DENABLE_CMAKE_EXAMPLE=ON -DENABLE_CMAKE_TESTING=ON + run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DEDO=ON -DEDO_USE_LIB=Eigen3 -DENABLE_CMAKE_EXAMPLE=ON -DENABLE_CMAKE_TESTING=ON - name: Build # Build your program with the given configuration