Fix msvc ci yaml issues

This commit is contained in:
ado 2023-07-29 15:30:05 +02:00
parent bdfd896861
commit b7f6009eb9

View File

@ -25,7 +25,7 @@ jobs:
run:
shell: bash
runs-on: {{ matrix.config.os }}
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
@ -50,11 +50,14 @@ jobs:
run: script/ci_install_deps.sh
- name: Configure
run: cmake -S test -B build -G "${{ matrix.config.vs }}" -A ${{ matrix.platform }} --config ${{ matrix.build }}
run: >-
cmake -S test -B build -G "${{matrix.config.vs}}"
-A ${{matrix.platform}} --config ${{matrix.build}}
- name: Build
run: cmake --build build -j ${{steps.cores.outputs.count}}
- name: Run
working-directory: build
run: ctest -C Debug --output-on-failure -j ${{ steps.cores.outputs.count }}
run: >-
ctest -C Debug --output-on-failure -j ${{steps.cores.outputs.count}}