Skip to content

Commit 58c7911

Browse files
committed
[INFRA] Update CI args
1 parent 7c15162 commit 58c7911

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

.github/workflows/ci_coverage.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,18 +54,18 @@ jobs:
5454
mkdir build
5555
cd build
5656
cmake ../test/coverage -DCMAKE_BUILD_TYPE=Coverage
57-
make -j gtest_main
57+
make gtest_main
5858
5959
- name: Build tests
6060
working-directory: build
6161
run: |
6262
ccache -z
63-
make -k -j
63+
make -k
6464
ccache -sv
6565
6666
- name: Run tests
6767
working-directory: build
68-
run: ctest . -j --output-on-failure
68+
run: ctest . -j --output-on-failure --no-tests=error
6969

7070
- name: Generate coverage report
7171
run: |

.github/workflows/ci_documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
5555
- name: Run tests
5656
working-directory: build
57-
run: ctest . -j --output-on-failure
57+
run: ctest . -j --output-on-failure --no-tests=error
5858

5959
- name: Deploy Preview
6060
if: github.event_name == 'pull_request_target'

.github/workflows/ci_install.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,5 @@ jobs:
6868

6969
- name: Run tests
7070
working-directory: build
71-
run: ctest .
71+
run: ctest . -j
7272

.github/workflows/ci_linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,16 @@ jobs:
5151
run: |
5252
mkdir build && cd build
5353
cmake ../test/unit -DCMAKE_BUILD_TYPE=Release
54-
make -j gtest_main
54+
make gtest_main
5555
5656
- name: Build tests
5757
working-directory: build
5858
run: |
5959
ccache -z
60-
make -k -j
60+
make -k
6161
ccache -sv
6262
6363
- name: Run tests
6464
working-directory: build
65-
run: ctest . -j --output-on-failure
65+
run: ctest . -j --output-on-failure --no-tests=error
6666

.github/workflows/ci_macos.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,15 +54,15 @@ jobs:
5454
mkdir build
5555
cd build
5656
cmake ../test/unit -DCMAKE_BUILD_TYPE=Release
57-
make -j gtest_main
57+
make gtest_main
5858
5959
- name: Build tests
6060
working-directory: build
6161
run: |
6262
ccache -z
63-
make -k -j
63+
make -k
6464
ccache -sv
6565
6666
- name: Run tests
6767
working-directory: build
68-
run: ctest . -j --output-on-failure
68+
run: ctest . -j --output-on-failure --no-tests=error

.github/workflows/ci_misc.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -108,28 +108,28 @@ jobs:
108108
-DHIBF_USE_INCLUDE_DEPENDENCIES="${{ matrix.use_include_dependencies }}" \
109109
-DCMAKE_DEPENDS_USE_COMPILER=OFF
110110
case "${{ matrix.build }}" in
111-
unit) make -j gtest_main;;
112-
snippet) make -j gtest_main;;
113-
performance) make -j benchmark_main;;
114-
header) make -j gtest_main benchmark_main;;
111+
unit) make gtest_main;;
112+
snippet) make gtest_main;;
113+
performance) make benchmark_main;;
114+
header) make gtest_main benchmark_main;;
115115
esac
116116
117117
- name: Check cyclic includes
118118
if: matrix.use_include_dependencies == 'ON'
119119
working-directory: build
120120
run: |
121-
make -k -j all_dependencies
121+
make -k all_dependencies
122122
cmake .
123123
124124
- name: Build tests
125125
if: matrix.use_include_dependencies == 'OFF'
126126
working-directory: build
127127
run: |
128128
ccache -z
129-
make -k -j
129+
make -k
130130
ccache -sv
131131
132132
- name: Run tests
133133
if: matrix.use_include_dependencies == 'OFF'
134134
working-directory: build
135-
run: ctest . -j --output-on-failure
135+
run: ctest . -j --output-on-failure --no-tests=error

.github/workflows/ci_sanitizer.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,13 +100,13 @@ jobs:
100100
mkdir build && cd build
101101
cmake ../test/all -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} \
102102
-DCMAKE_CXX_FLAGS="${{ matrix.cxx_flags }}"
103-
make -j gtest_main benchmark_main
103+
make gtest_main benchmark_main
104104
105105
- name: Build tests
106106
working-directory: build
107-
run: make -k -j
107+
run: make -k
108108

109109
- name: Run tests
110110
working-directory: build
111-
run: ctest . -j --output-on-failure ${{ matrix.ctest_excludes }}
111+
run: ctest . -j --output-on-failure --no-tests=error ${{ matrix.ctest_excludes }}
112112

.github/workflows/ci_util.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
working-directory: build
5151
run: |
5252
ccache -z
53-
make -k -j
53+
make -k
5454
ccache -sv
5555
5656

0 commit comments

Comments
 (0)