blob: df16025336647a0216bf21efd390d6123a42c2bb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
if (utils.scm_checkout()) return
bc = BuildConfig()
bc.nodetype = ''
bc.build_mode = 'sandbox'
bc.build_cmds = [
"echo hello world > hello.txt",
"echo word hello > world.test",
]
bc.data_upload = [
'generic-local/sandbox': [
'': ['*.txt', '*.test']
],
]
utils.run(bc)
|