From 6f9d659a4885767c10cd667ebc5655c15ba67084 Mon Sep 17 00:00:00 2001 From: Rich Hornung Date: Fri, 19 Jul 2024 16:25:00 -0700 Subject: [PATCH] having fun yet?? --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cc34dbf047..a1b394a7f5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -54,10 +54,10 @@ jobs: - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -DENABLE_WARNINGS_AS_ERRORS=Off -BLT_CXX_STD="" CMAKE_BUILD_TYPE=Release - name: Build - run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} + run: make -j 16 - name: Test working-directory: ${{github.workspace}}/build - run: ctest -C ${{env.BUILD_TYPE}} --output-on-failure + run: ctest -C Release --output-on-failure ## ==================================== ## Config and build action following Umpire. This works! ## - uses: threeal/cmake-action@v1.3.0