Skip to content

Commit fadcb35

Browse files
committed
qemu: disable reports during bootstrap
1 parent 329261e commit fadcb35

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

ci/qemu_linux_tests.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -230,13 +230,14 @@ printf -v test_command '%q ' ./vnew "$@"
230230

231231
remote_command="cd ${guest_repo_q}"
232232
remote_command+=" && export PATH=${guest_repo_q}:\$PATH VFLAGS=${vflags_q}"
233+
remote_command+=" V_C_ERROR_BUG_REPORT_DISABLED=1"
233234
remote_command+=" && if [ ! -f thirdparty/tcc/lib/libgc.a ]; then make; fi"
234-
remote_command+=" && V_C_ERROR_BUG_REPORT_DISABLED=1 ./v -old-compiler -o ./vnew cmd/v"
235+
remote_command+=" && ./v -old-compiler -o ./vnew cmd/v"
235236
if ((provision)); then
236237
remote_command+=" && ./vnew retry -- ./vnew install markdown"
237238
remote_command+=" && if [ ! -f thirdparty/sqlite/sqlite3.c ]; then ./vnew -old-compiler run vlib/db/sqlite/install_thirdparty_sqlite.vsh; fi"
238239
fi
239240
remote_command+=" && ./vnew wipe-cache"
240-
remote_command+=" && VJOBS=${jobs_q} V_C_ERROR_BUG_REPORT_DISABLED=1"
241+
remote_command+=" && VJOBS=${jobs_q}"
241242
remote_command+=" V_MACOS_V3_NO_FALLBACK=${no_fallback_q} ${test_command}"
242243
ssh "${ssh_options[@]}" "$guest" "$remote_command"

0 commit comments

Comments
 (0)