Skip to content

Commit 54dd531

Browse files
committed
Fix pipeline
1 parent a408db3 commit 54dd531

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/clangcl.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,11 @@ jobs:
6565

6666
- name: 'Configure CMake'
6767
working-directory: ${{ github.workspace }}
68-
run: cmake --preset=${{ matrix.build_type }}
68+
run: cmake --preset=${{ matrix.build_type }} -DBUILD_TESTING=ON
6969

7070
- name: 'Build'
7171
working-directory: ${{ github.workspace }}
72-
run: cmake --build out/build/${{ matrix.build_type }} -DBUILD_TESTING=ON
72+
run: cmake --build out/build/${{ matrix.build_type }}
7373

7474
- if: (matrix.build_type == 'x64-Release-Clang') || (matrix.build_type == 'x86-Release-Clang')
7575
timeout-minutes: 10
@@ -115,11 +115,11 @@ jobs:
115115

116116
- name: 'Configure CMake'
117117
working-directory: ${{ github.workspace }}
118-
run: cmake --preset=${{ matrix.build_type }}
118+
run: cmake --preset=${{ matrix.build_type }} -DBUILD_TESTING=ON
119119

120120
- name: 'Build'
121121
working-directory: ${{ github.workspace }}
122-
run: cmake --build out/build/${{ matrix.build_type }} -DBUILD_TESTING=ON
122+
run: cmake --build out/build/${{ matrix.build_type }}
123123

124124
- if: (matrix.build_type == 'x64-Release-Clang') || (matrix.build_type == 'x86-Release-Clang')
125125
timeout-minutes: 10

0 commit comments

Comments
 (0)