From 42f313081c77754bc1ca6fc425185880a762fb69 Mon Sep 17 00:00:00 2001 From: Chuck Walbourn Date: Sun, 28 Jul 2024 16:03:21 -0700 Subject: [PATCH] Try to fix test pipe --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1b9bb68..496e4f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -107,8 +107,8 @@ jobs: working-directory: ${{ github.workspace }} run: cmake --build out\build\${{ matrix.build_type }} - - if: (${{ matrix.build_type }} == 'x64-Release') || (${{ matrix.build_type }} == 'x86-Release') + - if: (matrix.build_type == 'x64-Release') || (matrix.build_type == 'x86-Release') timeout-minutes: 10 name: 'Test' working-directory: ${{ github.workspace }} - run: ctest --preset=${{ matrix.build_type }} --test-dir out + run: ctest --preset=${{ matrix.build_type }}