Skip to content

Commit 40b81a2

Browse files
authored
use test make target in CI instead of check (#7892)
in the unlikely case the `testrunner` exits prematurely, this will allow to identify the last run test
1 parent 5ea72f4 commit 40b81a2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/CI-cygwin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
# Cygwin will always link the binaries even if they already exist. The linking is also extremely slow. So just run the "check" target which includes all the binaries.
5151
- name: Build all and run test
5252
run: |
53-
C:\cygwin\bin\bash.exe -l -c cd %GITHUB_WORKSPACE% && make VERBOSE=1 -j%NUMBER_OF_PROCESSORS% CXXOPTS="-Werror" check
53+
C:\cygwin\bin\bash.exe -l -c cd %GITHUB_WORKSPACE% && make VERBOSE=1 -j%NUMBER_OF_PROCESSORS% CXXOPTS="-Werror" test
5454
5555
- name: Extra test for misra
5656
run: |

.github/workflows/CI-mingw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ jobs:
7272
export PATH="/mingw64/lib/ccache/bin:$PATH"
7373
# set RDYNAMIC to work around broken MinGW detection
7474
# use lld for faster linking
75-
make VERBOSE=1 RDYNAMIC=-lshlwapi LDOPTS=-fuse-ld=lld -j$(nproc) CXXOPTS="-Werror" check
75+
make VERBOSE=1 RDYNAMIC=-lshlwapi LDOPTS=-fuse-ld=lld -j$(nproc) CXXOPTS="-Werror" test

.github/workflows/CI-unixish-docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ jobs:
120120
121121
- name: Run test
122122
run: |
123-
make -j$(nproc) HAVE_RULES=yes check
123+
make -j$(nproc) HAVE_RULES=yes test
124124
125125
# requires python3
126126
- name: Run extra tests

.github/workflows/CI-unixish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ jobs:
257257
258258
- name: Test with TEST_MATHLIB_VALUE
259259
run: |
260-
make -j$(nproc) check
260+
make -j$(nproc) test
261261
262262
check_nonneg:
263263

@@ -421,7 +421,7 @@ jobs:
421421
422422
- name: Run test
423423
run: |
424-
make -j$(nproc) HAVE_RULES=yes check
424+
make -j$(nproc) HAVE_RULES=yes test
425425
426426
# requires "gnu-sed" installed on macos
427427
- name: Run extra tests

0 commit comments

Comments
 (0)