blob: 709ffa1467511489328839207a0c57d4f6204e96 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
if (utils.scm_checkout()) return
println('WTF')
data_configs = []
println('WTF')
dc = new DataConfig()
println('WTF')
dc.insert('test', '{"test":"alive"}')
println('WTF')
data_configs += dc
println('WTF')
bc = new BuildConfig()
println('WTF')
bc.nodetype = 'master'
bc.build_mode = 'sandbox'
bc.build_cmds = ["echo hello"]
//bc.build_cmds = [
// "echo {\"test\":\"alive2\"} > alive.json"
//]
bc.test_artifacts = data_configs
utils.run(bc)
|