8888 - name : Build V
8989 run : make -j4 && ./v symlink
9090 - name : Ensure code is well formatted
91- run : ./v test-cleancode
91+ run : ./v -silent test-cleancode
9292 - name : Install dependencies
9393 run : |
9494 ./v retry -- sudo apt update
@@ -100,9 +100,9 @@ jobs:
100100 - name : Self tests (-fsanitize=undefined)
101101 run : |
102102 ./v -cflags -fsanitize=undefined -o v2 cmd/v
103- ./v2 -cflags -fsanitize=undefined test-self vlib
103+ ./v2 -cflags -fsanitize=undefined -silent test-self vlib
104104 - name : Build examples (V compiled with -fsanitize=undefined)
105- run : ./v2 build-examples
105+ run : ./v2 -silent build-examples
106106
107107 sanitize-undefined-gcc :
108108 runs-on : ubuntu-22.04
@@ -117,7 +117,7 @@ jobs:
117117 - name : Build V
118118 run : make -j4 && ./v symlink
119119 - name : Ensure code is well formatted
120- run : ./v test-cleancode
120+ run : ./v -silent test-cleancode
121121 - name : Install dependencies
122122 run : |
123123 ./v retry -- sudo apt update
@@ -128,9 +128,9 @@ jobs:
128128 - name : Self tests (-fsanitize=undefined)
129129 run : |
130130 ./v -cflags -fsanitize=undefined -o v2 cmd/v
131- ./v2 -cflags -fsanitize=undefined test-self vlib
131+ ./v2 -cflags -fsanitize=undefined -silent test-self vlib
132132 - name : Build examples (V compiled with -fsanitize=undefined)
133- run : ./v2 build-examples
133+ run : ./v2 -silent build-examples
134134
135135 tests-sanitize-address-clang :
136136 runs-on : ubuntu-22.04
@@ -146,7 +146,7 @@ jobs:
146146 - name : Build V
147147 run : make -j4 && ./v symlink
148148 - name : Ensure code is well formatted
149- run : ./v test-cleancode
149+ run : ./v -silent test-cleancode
150150 - name : Install dependencies
151151 run : |
152152 ./v retry -- sudo apt update
@@ -156,13 +156,13 @@ jobs:
156156 - name : Recompile V with -cstrict
157157 run : ./v -cg -cstrict -o v cmd/v
158158 - name : Self tests (-fsanitize=address)
159- run : ./v -cflags -fsanitize=address,pointer-compare,pointer-subtract test-self vlib
159+ run : ./v -cflags -fsanitize=address,pointer-compare,pointer-subtract -silent test-self vlib
160160 - name : Self tests (V compiled with -fsanitize=address)
161161 run : |
162162 ./v -cflags -fsanitize=address -o v cmd/v
163- ./v -cc tcc test-self -asan-compiler vlib
163+ ./v -cc tcc -silent test-self -asan-compiler vlib
164164 - name : Build examples (V compiled with -fsanitize=address)
165- run : ./v build-examples
165+ run : ./v -silent build-examples
166166
167167 sanitize-address-msvc :
168168 runs-on : windows-2019
@@ -180,13 +180,13 @@ jobs:
180180 .\make.bat -msvc
181181 .\v.exe self
182182 - name : Ensure code is well formatted
183- run : .\v.exe test-cleancode
183+ run : .\v.exe -silent test-cleancode
184184 # - name: Install dependencies
185185 # run: |
186186 # .\v.exe setup-freetype
187187 # .\.github\workflows\windows-install-sqlite.bat
188188 # - name: Self tests (/fsanitize=address) # TODO:
189- # run: .\v.exe -cflags "/fsanitize=address" test-self vlib
189+ # run: .\v.exe -cflags "/fsanitize=address" -silent test-self vlib
190190
191191 sanitize-address-gcc :
192192 runs-on : ubuntu-22.04
@@ -202,7 +202,7 @@ jobs:
202202 - name : Build V
203203 run : make -j4 && ./v symlink
204204 - name : Ensure code is well formatted
205- run : ./v test-cleancode
205+ run : ./v -silent test-cleancode
206206 - name : Install dependencies
207207 run : |
208208 ./v retry -- sudo apt update
@@ -212,13 +212,13 @@ jobs:
212212 - name : Recompile V with -cstrict
213213 run : ./v -cg -cstrict -o v cmd/v
214214 - name : Self tests (-fsanitize=address)
215- run : ./v -cflags -fsanitize=address test-self vlib
215+ run : ./v -cflags -fsanitize=address -silent test-self vlib
216216 - name : Self tests (V compiled with -fsanitize=address)
217217 run : |
218218 ./v -cflags -fsanitize=address,pointer-compare,pointer-subtract -o v cmd/v
219- ./v -cc tcc test-self -asan-compiler vlib
219+ ./v -cc tcc -silent test-self -asan-compiler vlib
220220 - name : Build examples (V compiled with -fsanitize=address)
221- run : ./v build-examples
221+ run : ./v -silent build-examples
222222
223223 sanitize-memory-clang :
224224 runs-on : ubuntu-22.04
@@ -232,7 +232,7 @@ jobs:
232232 - name : Build V
233233 run : make -j4 && ./v symlink
234234 - name : Ensure code is well formatted
235- run : ./v test-cleancode
235+ run : ./v -silent test-cleancode
236236 - name : Install dependencies
237237 run : |
238238 ./v retry -- sudo apt update
@@ -242,10 +242,10 @@ jobs:
242242 - name : Recompile V with clang and -cstrict
243243 run : ./v -cc clang -cg -cstrict -o v cmd/v
244244 - name : Self tests (-fsanitize=memory)
245- run : ./v -cflags -fsanitize=memory test-self -msan-compiler vlib
245+ run : ./v -cflags -fsanitize=memory -silent test-self -msan-compiler vlib
246246 - name : Self tests (V compiled with -fsanitize=memory)
247247 run : |
248248 ./v -cflags -fsanitize=memory -o v cmd/v
249- ./v -cc tcc test-self -msan-compiler vlib
249+ ./v -cc tcc -silent test-self -msan-compiler vlib
250250 - name : Build examples (V compiled with -fsanitize=memory)
251- run : ./v build-examples
251+ run : ./v -silent build-examples
0 commit comments