blob: 1c477f870094b86f49fae8cda9a981d19563a766 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
if (utils.scm_checkout()) return
dc = new DataConfig()
dc.insert('test', '[{"test":"testing"}]')
bc = new BuildConfig()
bc.nodetype = 'linux'
bc.build_mode = 'example'
bc.build_cmds = ["echo hello"]
bc.test_cmds = [
'echo [{"test2":"alive2"}] > test2.json',
]
bc.test_artifacts = [dc]
matrix = [bc]
utils.run(matrix)
|