summaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: b0428c55f5158abed227d861b5c009e4574edccb (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 = ''
bc.build_mode = 'sandbox'
bc.build_cmds = [
    "echo {\"test\":\"alive2\"} > alive.json"
]
bc.test_artifacts = data_configs

utils.run(bc)