fix build results location on MSVC test

This commit is contained in:
Alfi Maulana 2023-01-17 13:07:40 +07:00
parent 716f237b51
commit c51d734eb9
No known key found for this signature in database
GPG Key ID: 2242A64C2A8DF5A4

View File

@ -58,7 +58,9 @@ jobs:
args: -D CHECK_SURPASS_WARNING=ON args: -D CHECK_SURPASS_WARNING=ON
- name: Run the build results - name: Run the build results
run: build/test_c && build/test_cpp run: |
${{ matrix.compiler == 'msvc' && 'build\Debug\test_c.exe' || 'build/test_c' }}
${{ matrix.compiler == 'msvc' && 'build\Debug\test_cpp.exe' || 'build/test_cpp' }}
specified-compiler-usage: specified-compiler-usage:
runs-on: ${{ matrix.os }}-latest runs-on: ${{ matrix.os }}-latest