waldhart-availability

Read and process availability from Waldhart software
git clone https://git.in0rdr.ch/waldhart-availability.git
Log | Files | Refs | Pull requests |Archive | README

Jenkinsfile (344B)


      1 @Library('in0rdr-jenkins-lib@master') _
      2 
      3 def buildahbud = new BuildahBud(this)
      4 def buildahpush = new BuildahPush(this)
      5 
      6 node('podman'){
      7   scmVars = checkout(scm)
      8   gitleaks()
      9 
     10   // build with image context and name
     11   buildahbud.execute([:], ".", "waldhart", "${scmVars.GIT_COMMIT}")
     12   buildahpush.execute("waldhart", "${scmVars.GIT_COMMIT}")
     13 }