From 1cb76c92f4982e6c200cb0d7aa60dc1ba527b9dc Mon Sep 17 00:00:00 2001 From: Delyan Angelov Date: Mon, 24 Feb 2025 16:30:36 +0200 Subject: [PATCH] ci: remove the VJOBS=1 restriction for test-cleancode on linux (#23801) --- ci/linux_ci.vsh | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/ci/linux_ci.vsh b/ci/linux_ci.vsh index 71a1163ae6..d7d23554d0 100644 --- a/ci/linux_ci.vsh +++ b/ci/linux_ci.vsh @@ -5,7 +5,7 @@ import common { Task, exec } // fn all_code_is_formatted() { if common.is_github_job { - exec('VJOBS=1 v -silent test-cleancode') + exec('v -silent test-cleancode') } else { exec('v -progress test-cleancode') } @@ -23,7 +23,7 @@ fn test_pure_v_math_module() { fn self_tests() { if common.is_github_job { - exec('VJOBS=1 v -silent test-self vlib') + exec('v -silent test-self vlib') } else { exec('v -progress test-self vlib') } @@ -95,7 +95,11 @@ fn run_submodule_example_tcc() { } fn build_tools_tcc() { - exec('v -N -W build-tools') + if common.is_github_job { + exec('v -silent -N -W build-tools') + } else { + exec('v -progress -N -W build-tools') + } } fn build_vbinaries_tcc() {