Skip to content

Commit 082b5db

Browse files
committed
.github/workflows/fstests.yml: enable make verbosity
This prints the commands as well as the Makefile target being run. Signed-off-by: Daniel Gomez <da.gomez@samsung.com>
1 parent a7653a3 commit 082b5db

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/fstests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,23 +49,23 @@ jobs:
4949
5050
- name: Run kdevops make
5151
run: |
52-
make -j$(nproc)
52+
make V=1 -j$(nproc)
5353
5454
- name: Run kdevops make bringup
5555
run: |
56-
make bringup
56+
make V=1 bringup
5757
5858
- name: Build linux and boot test nodes on test kernel
5959
run: |
60-
make linux
60+
make V=1 linux
6161
6262
- name: Build fstests
6363
run: |
64-
make fstests
64+
make V=1 fstests
6565
6666
- name: Run just one fstest to verify we tests and test collection works
6767
run: |
68-
make fstests-baseline TESTS=generic/003
68+
make V=1 fstests-baseline TESTS=generic/003
6969
echo "ok" > ci.result
7070
find workflows/fstests/results/last-run -name xunit_results.txt -type f -exec cat {} \; > ci.commit_extra || true
7171
if ! grep -E "failures, [1-9]|errors, [1-9]" ci.commit_extra; then
@@ -75,7 +75,7 @@ jobs:
7575
- name: Get systemd journal files
7676
if: always() # This ensures the step runs even if previous steps failed
7777
run: |
78-
make journal-dump
78+
make V=1 journal-dump
7979
8080
- name: Start SSH Agent
8181
if: always() # Ensure this step runs even if previous steps failed
@@ -86,7 +86,7 @@ jobs:
8686
- name: Build our kdevops archive results
8787
if: always() # This ensures the step runs even if previous steps failed
8888
run: |
89-
make ci-archive
89+
make V=1 ci-archive
9090
9191
- name: Upload our kdevops results archive
9292
if: always() # This ensures the step runs even if previous steps failed
@@ -99,4 +99,4 @@ jobs:
9999
- name: Run kdevops make destroy
100100
if: always() # This ensures the step runs even if previous steps failed
101101
run: |
102-
make destroy
102+
make V=1 destroy

0 commit comments

Comments
 (0)