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