Skip to content

Commit

Permalink
turn off unit tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
balos1 committed Feb 16, 2024
1 parent 33fa185 commit bf03889
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/windows-latest-ninja.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Test - Windows/Ninja/MSVC (short)
name: Build and Test - Windows/mingw/ninja (short)

on:
push: # temporary
Expand All @@ -25,7 +25,7 @@ jobs:
run: choco install ninja

- name: Configure CMake (Shared)
run: cmake -G "Ninja" -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_STATIC_LIBS=OFF -DSUNDIALS_BUILD_WITH_PROFILING=ON -DSUNDIALS_TEST_UNITTESTS=ON -DEXAMPLES_ENABLE_CXX=ON
run: cmake -G "Ninja" -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_STATIC_LIBS=OFF -DSUNDIALS_BUILD_WITH_PROFILING=ON -DSUNDIALS_TEST_UNITTESTS=OFF -DEXAMPLES_ENABLE_CXX=ON

- name: Build
# Build your program with the given configuration
Expand All @@ -38,7 +38,7 @@ jobs:
run: ctest -C ${{env.BUILD_TYPE}}

- name: Configure CMake (Static)
run: cmake -G "Ninja" -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_SHARED_LIBS=OFF -DSUNDIALS_BUILD_WITH_PROFILING=ON -DSUNDIALS_TEST_UNITTESTS=ON -DEXAMPLES_ENABLE_CXX=ON
run: cmake -G "Ninja" -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DBUILD_SHARED_LIBS=OFF -DSUNDIALS_BUILD_WITH_PROFILING=ON -DSUNDIALS_TEST_UNITTESTS=OFF -DEXAMPLES_ENABLE_CXX=ON

- name: Build
# Build your program with the given configuration
Expand Down

0 comments on commit bf03889

Please sign in to comment.