From 22261ba94f780144cd25d914282eab01253e979f Mon Sep 17 00:00:00 2001 From: "Jan W. Krieger" Date: Tue, 23 Apr 2024 12:25:15 +0200 Subject: [PATCH] Update build_msvc.yml --- .github/workflows/build_msvc.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build_msvc.yml b/.github/workflows/build_msvc.yml index dbc5973..c9c8fa4 100644 --- a/.github/workflows/build_msvc.yml +++ b/.github/workflows/build_msvc.yml @@ -36,18 +36,18 @@ jobs: cd build ls -R cd .. -# - name: Run Release tests -# run: | -# cd build + - name: Run Release tests + run: | + cd build/Debug + tinytiffwriter_test --simple + tinytiffreader_test --simple # ctest -C Release -LE explicitonly --output-on-failure -# - name: Run Debug tests -# run: | -# cd build + - name: Run Debug tests + run: | + cd build/Release + tinytiffwriter_test --simple + tinytiffreader_test --simple # ctest -C Debug -LE explicitonly --output-on-failure -# - name: Install -# run: | -# cmake --install build --config Release -# - name: Test Installation -# run: | -# cmake -G "${{matrix.gen}}" -A ${{matrix.arch}} -B build_install_test tests/installation_tests/find -# cmake --build build_install_test --config Release + - name: Install + run: | + cmake --install build --config Release