ci: remove the VJOBS=1 restriction for test-cleancode on linux (#23801)

This commit is contained in:
Delyan Angelov 2025-02-24 16:30:36 +02:00 committed by GitHub
parent fa8c5e369a
commit 1cb76c92f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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() {