blob: 703d8ecb8e6473c582ea27453d665134e511d4d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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_server_id = 'artifactory'
bc.test_artifacts = [dc]
matrix = [bc]
utils.run(matrix)
|