diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-05-09 21:29:16 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2018-05-09 21:29:16 -0400 |
commit | 80b50fd110850114bfb1b0a7d88e0404960cc4fd (patch) | |
tree | 7ce33a33e2502a4153313e67d3a754892e40ccbe | |
download | sandbox-80b50fd110850114bfb1b0a7d88e0404960cc4fd.tar.gz |
Initial commit
-rw-r--r-- | Jenkinsfile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..8e578d6 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,17 @@ +if (utils.scm_checkout()) return + +bc = BuildConfig() +bc.nodetype = '' +bc.build_mode = 'sandbox' +bc.build_cmds = [ + "echo hello world > hello.txt", + "echo word hello > world.test", +] +bc.data_upload = [ + 'generic-local/sandbox': [ + '': ['*.txt', '*.test'] + ], +] + +utils.matrix(bc) + |