summaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: fd1f5a7c38a4bc9d439a76fc1963adb32b570ded (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
if (utils.scm_checkout()) return

data_configs = []
dc = new DataConfig()
dc.insert('test', '{"test":"alive"}')

configs += dc

bc = new BuildConfig()
bc.nodetype = 'master'
bc.build_mode = 'sandbox'
bc.build_cmds = [
    "echo {\"test\":\"alive2\"} > alive.json"
]
bc.test_artifacts = data_configs

utils.run(bc)