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

dc = new DataConfig()
dc.server_id = 'artifactory'
dc.match_prefix = "(.*)_result"

bc = new BuildConfig()
bc.nodetype = 'linux'
bc.build_mode = 'example'
bc.build_cmds = ["echo hello"]
bc.test_configs = [dc]

matrix = [bc]
utils.run(matrix)