blob: 8e578d6d8ae36c991ee8f503f421b0a51afcd50b (
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.matrix(bc)
|