From dd8262205292f0e5835f9aad5d0f1989ea8c99a6 Mon Sep 17 00:00:00 2001 From: "Charlton, Scott R" Date: Tue, 4 May 2021 13:22:35 -0600 Subject: [PATCH] removed continue-on-error --- .github/workflows/cmake.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 3710472b..4a539b23 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -25,11 +25,10 @@ jobs: exclude: - BUILD_SHARED_LIBS: OFF BUILD_CLR_LIBS: ON - continue-on-error: - + steps: - uses: actions/checkout@v2 - + - name: Configure CMake # 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 @@ -44,4 +43,3 @@ jobs: # Execute tests defined by the CMake configuration. # See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail run: ctest -C ${{env.BUILD_TYPE}} -