Skip to content

Commit 2a33ba8

Browse files
ci(workflow): update Windows x64 workflow to use direct cmake/ctest commands
1 parent b374087 commit 2a33ba8

1 file changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/windows_x64_dev.yml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches: [ "dev" ]
66
pull_request:
77
branches: [ "dev" ]
8-
8+
99
jobs:
1010
build:
1111
runs-on: windows-latest
@@ -23,7 +23,11 @@ jobs:
2323
run: |
2424
cmake -B ${{ github.workspace }}/build -G "Visual Studio 17 2022"
2525
26-
- name: Test
26+
- name: Build all targets
27+
run: |
28+
cmake --build ${{ github.workspace }}/build --config Debug
29+
30+
- name: Run tests
2731
run: |
28-
cd scripts
29-
.\run_test.py
32+
cd ${{ github.workspace }}/build
33+
ctest --verbose -C Debug

0 commit comments

Comments
 (0)