diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-06-04 11:01:09 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-06-04 11:01:09 -0400 |
commit | 3be7854d0124a18d2d346e4ddfb76ceb8d175309 (patch) | |
tree | 8eff59239cd96e46fb0e8b06692eb3597e10bf32 | |
parent | a35620a9abc821cf30fc868e5a9234a80e15d400 (diff) | |
download | sandbox-3be7854d0124a18d2d346e4ddfb76ceb8d175309.tar.gz |
omg
-rw-r--r-- | Jenkinsfile | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/Jenkinsfile b/Jenkinsfile index a164ad0..9af5644 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,13 +1,8 @@ if (utils.scm_checkout()) return -//dc = new DataConfig() -//dc.insert('test', '{"test":"alive"}') - bc = new BuildConfig() -bc.nodetype = 'linux' -bc.build_mode = 'sandbox' +bc.nodetype = 'master' +bc.build_mode = 'example' bc.build_cmds = ["echo hello"] -//bc.test_artifacts = dc - -utils.run(bc, concurrent=false) - +matrix = [bc] +utils.run(matrix, concurrent=false) |