Skip to content

Commit 9542a7b

Browse files
authored
Makefile: some cleanups / added VERBOSE option (danmar#4438)
1 parent 117a753 commit 9542a7b

5 files changed

Lines changed: 251 additions & 184 deletions

File tree

.github/workflows/CI-cygwin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
# 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.
4040
- name: Build all and run test
4141
run: |
42-
C:\cygwin\bin\bash.exe -l -c cd %GITHUB_WORKSPACE% && make -j2 check
42+
C:\cygwin\bin\bash.exe -l -c cd %GITHUB_WORKSPACE% && make VERBOSE=1 -j2 check
4343
4444
- name: Extra test for misra
4545
run: |

.github/workflows/CI-mingw.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ jobs:
3434
# MinGW 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.
3535
- name: Build all and run test
3636
run: |
37-
mingw32-make -j2 check
37+
mingw32-make VERBOSE=1 -j2 check

0 commit comments

Comments
 (0)