mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
CI: add v build-tools
task to the tcc job
This commit is contained in:
parent
8cbb9e1c1f
commit
fb27fe5379
3 changed files with 12 additions and 1 deletions
|
@ -216,6 +216,10 @@ pub fn vlib_should_be_present(parent_dir string) {
|
|||
}
|
||||
|
||||
pub fn v_build_failing(zargs string, folder string) bool {
|
||||
return v_build_failing_skipped(zargs, folder, [])
|
||||
}
|
||||
|
||||
pub fn v_build_failing_skipped(zargs string, folder string, skipped []string) bool {
|
||||
main_label := 'Building $folder ...'
|
||||
finish_label := 'building $folder'
|
||||
vexe := pref.vexe_path()
|
||||
|
@ -239,6 +243,7 @@ pub fn v_build_failing(zargs string, folder string) bool {
|
|||
}
|
||||
}
|
||||
session.files << mains
|
||||
session.skip_files << skipped
|
||||
session.test()
|
||||
eprintln(session.benchmark.total_message(finish_label))
|
||||
return session.failed
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue