Skip to content

Commit 8810947

Browse files
committed
WIP
1 parent afa83d3 commit 8810947

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/linux.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
- name: Configure using cmake
3535
run: |
3636
cmake -G Ninja \
37+
-Bbuild \
3738
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
3839
-DCMAKE_INSTALL_PREFIX=%CONDA_PREFIX% \
3940
-DCMAKE_PREFIX_PATH=%CONDA_PREFIX% \
@@ -67,6 +68,7 @@ jobs:
6768
- name: Configure using cmake
6869
run: |
6970
cmake -G Ninja \
71+
-Bbuild \
7072
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
7173
-DSPARROW_IPC_BUILD_SHARED=${{ matrix.build_shared }} \
7274
-DSPARROW_IPC_BUILD_TESTS=ON \

.github/workflows/osx.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
- name: Configure using cmake
3232
run: |
3333
cmake -G Ninja \
34+
-Bbuild \
3435
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
3536
-DCMAKE_INSTALL_PREFIX=%CONDA_PREFIX% \
3637
-DCMAKE_PREFIX_PATH=%CONDA_PREFIX% \
@@ -63,6 +64,7 @@ jobs:
6364
- name: Configure using cmake
6465
run: |
6566
cmake -G Ninja \
67+
-Bbuild \
6668
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
6769
-DSPARROW_IPC_BUILD_SHARED=${{ matrix.build_shared }} \
6870
-DSPARROW_IPC_BUILD_TESTS=ON \

.github/workflows/windows.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333
- name: Configure using cmake
3434
run: |
3535
cmake -G Ninja \
36+
-Bbuild \
3637
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
3738
-DCMAKE_INSTALL_PREFIX=%CONDA_PREFIX% \
3839
-DCMAKE_PREFIX_PATH=%CONDA_PREFIX% \
@@ -66,6 +67,7 @@ jobs:
6667
- name: Configure using cmake
6768
run: |
6869
cmake -G Ninja \
70+
-Bbuild \
6971
-DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
7072
-DSPARROW_IPC_BUILD_SHARED=${{ matrix.build_shared }} \
7173
-DSPARROW_IPC_BUILD_TESTS=ON \

tests/CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@ add_custom_target(run_tests_with_junit_report
3434
COMMENT "Running tests with JUnit reports saved to: ${JUNIT_REPORT_FILE_DOCTEST}"
3535
USES_TERMINAL
3636
)
37+
38+
set_target_properties(run_tests_with_junit_report PROPERTIES FOLDER "Tests utilities")

0 commit comments

Comments
 (0)