From 9754714906dfb3a5f75d4e0955674f40b88c55d4 Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 30 Dec 2024 17:31:45 +0200 Subject: [PATCH] ci: use unbuffer_stdout() to ease debugging of failed CI steps --- ci/common/runner.v | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/common/runner.v b/ci/common/runner.v index 697d46d1420010..2798374f77a06b 100644 --- a/ci/common/runner.v +++ b/ci/common/runner.v @@ -33,6 +33,7 @@ pub fn (t Task) run() { } pub fn run(all_tasks map[string]Task) { + unbuffer_stdout() if os.args.len < 2 { println('Usage: v run macos_ci.vsh ') println('Available tasks are: ${all_tasks.keys()}')