summaryrefslogtreecommitdiff
path: root/Jenkinsfile
blob: a45afdb1efc796fdbc8d309f14f1ba20d78460f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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"]
bc.test_artifacts = [dc]
matrix = [bc]
utils.run(matrix)