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

dc = new DataConfig()
dc.match_prefix = "(.*)_result"

bc = new BuildConfig()
bc.nodetype = 'linux'
bc.build_mode = 'example'
bc.build_cmds = ["echo hello"]
//bc.test_cmds = [
//    'echo [{"test2":"alive2"}] > test2.json',
//]
bc.test_server_id = 'artifactory'
bc.test_artifacts = [dc]
matrix = [bc]
utils.run(matrix)