blob: e345417a691bc7f58e505a9104e9e26033c48ed8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
if (utils.scm_checkout()) return
data_configs = []
dc = new DataConfig()
dc.insert('test', '{"test":"alive"}')
data_configs += dc
bc = new BuildConfig()
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)
|