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

dc = new DataConfig()
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_artifacts = [dc]
matrix = [bc]
utils.run(matrix)