File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff 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
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
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
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
You can’t perform that action at this time.
0 commit comments