v/cmd/tools/vbuild-examples.v

31 lines
733 B
V
Raw Normal View History

2019-12-01 10:50:13 +01:00
module main
2020-04-26 08:32:05 +02:00
import os
import testing
2019-12-01 10:50:13 +01:00
const vroot = @VMODROOT
const efolders = [
'examples/viewer',
]
2019-12-01 10:50:13 +01:00
fn main() {
2020-12-20 18:01:02 +01:00
args_string := os.args[1..].join(' ')
params := args_string.all_before('build-examples')
skip_prefixes := efolders.map(os.real_path(os.join_path_single(vroot, it)))
res := testing.v_build_failing_skipped(params, 'examples', skip_prefixes, fn (mut session testing.TestSession) {
for x in efolders {
pathsegments := x.split_any('/')
session.add(os.real_path(os.join_path(vroot, ...pathsegments)))
}
})
if res {
2019-12-04 22:14:23 +01:00
exit(1)
}
if testing.v_build_failing_skipped(params + '-live', os.join_path_single('examples',
'hot_reload'), skip_prefixes, fn (mut session testing.TestSession) {})
{
2019-12-01 10:50:13 +01:00
exit(1)
}
}