Skip to content

Commit ab6835c

Browse files
committed
Updated CI to build testing even though it's off by default
1 parent 8843586 commit ab6835c

6 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/CodeQL.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ jobs:
111111
cmake \
112112
-DCMAKE_BUILD_TYPE=Release \
113113
-DDISABLE_PCH=ON \
114+
-DBUILD_TESTING=ON \
114115
-GNinja \
115116
..
116117

.github/workflows/build-arch.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ jobs:
148148
cmake \
149149
-DCMAKE_BUILD_TYPE=Release \
150150
-DDISABLE_PCH=ON \
151+
-DBUILD_TESTING=ON \
151152
-GNinja \
152153
-DCMAKE_INSTALL_PREFIX=/usr \
153154
..

.github/workflows/build-debian.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ jobs:
143143
-DDISABLE_PCH=ON \
144144
-GNinja \
145145
-DCPACK_GENERATOR=DEB \
146+
-DBUILD_TESTING=ON \
146147
-DCMAKE_INSTALL_PREFIX=/usr \
147148
..
148149

.github/workflows/build-fedora.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ jobs:
147147
-DDISABLE_PCH=ON \
148148
-GNinja \
149149
-DCPACK_GENERATOR=RPM \
150+
-DBUILD_TESTING=ON \
150151
-DCMAKE_INSTALL_PREFIX=/usr \
151152
..
152153

.github/workflows/build-ubuntu.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,7 @@ jobs:
142142
cmake \
143143
-DCMAKE_BUILD_TYPE=Release \
144144
-DDISABLE_PCH=ON \
145+
-DBUILD_TESTING=ON \
145146
-GNinja \
146147
-DCPACK_GENERATOR=DEB \
147148
-DCMAKE_INSTALL_PREFIX=/usr \

.github/workflows/build-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,15 @@ jobs:
6363
run: |
6464
mkdir build
6565
cd build
66-
cmake .. -DWIXPATH="C:\Program Files (x86)\WiX Toolset v3.14\bin" -GNinja
66+
cmake .. -DWIXPATH="C:\Program Files (x86)\WiX Toolset v3.14\bin" -DBUILD_TESTING=ON -GNinja
6767
ninja
6868
6969
- name: Build Only
7070
if: ${{ matrix.sys != 'ucrt64' }}
7171
run: |
7272
mkdir build
7373
cd build
74-
cmake .. -GNinja
74+
cmake .. -DBUILD_TESTING=ON -GNinja
7575
ninja
7676
7777
- name: Test

0 commit comments

Comments
 (0)