diff options
Diffstat (limited to 'Jenkinsfile')
-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) + |