X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=Jenkinsfile;h=2a9a0c079834fd9e696544779f434259aa9ac61c;hb=8869c1945defc59c41311194e5e3423f27ac4a37;hp=78b3a6c657c8ccaa7ad5bc8743ad4c70a5d33a02;hpb=cd571f7cf7e4d891fa17185fad5c0f92258cb430;p=upnpmonitor diff --git a/Jenkinsfile b/Jenkinsfile index 78b3a6c..2a9a0c0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,7 @@ String cron_string = BRANCH_NAME == "trunk" ? "10 3 * * *" : "" pipeline { agent { - kubernetes agentsetup(containers: 'java8') + kubernetes agentsetup(containers: 'java8,kaniko') } options { disableConcurrentBuilds() @@ -22,6 +22,11 @@ pipeline { mvn -N -Ddistrib=/data/www/http.upnpmonitor.wamblee.org/ site site:deploy ) """ + container('kaniko') { + sh """ + echo 'Hello world' + """ + } } } }