blob: 8b73dc32a0e2df5f68e7371cdfdd708b43ef0e93 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 '{\"test\":\"alive\"}' > test.json",
'echo {"test2":"alive2"} > test2.json',
'find .',
]
bc.test_artifacts = [dc]
matrix = [bc]
utils.run(matrix)
|