blob: 6fb6ed4723850a27ffde376dcec2d5b9c54f7926 (
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)
|