1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

v.util: prepare CI for the external markdown module (needed for vdoc)

This commit is contained in:
Delyan Angelov
2020-05-30 11:06:16 +03:00
parent b7dc5b2f7b
commit d148920b54
3 changed files with 75 additions and 1 deletions

View File

@ -2,6 +2,7 @@ module main
import os
import testing
import v.util
fn main() {
args := os.args
@ -10,6 +11,7 @@ fn main() {
skips := [
'cmd/tools/gen_vc.v'
]
util.ensure_modules_for_all_tools_are_installed('-v' in args)
if testing.v_build_failing_skipped(args_string.all_before('build-tools'), 'cmd/tools', skips) {
exit(1)
}