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

commit da8119664c290be21399878c9691f20fb8766a4f
parent 6cb49050342054d4ce908b74b5fa31ce6c09d154
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sat, 10 Jan 2026 18:58:44 +0100

feat(Jenkinsfile): build & tag with commit hash

Diffstat:
MJenkinsfile | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile @@ -1,6 +1,13 @@ @Library('in0rdr-jenkins-lib@master') _ +def buildahbud = new BuildahBud(this) +def buildahpush = new BuildahPush(this) + node('podman'){ checkout scm gitleaks() + + // build with image context and name + buildahbud.execute([:], ".", "waldhart", "${scmVars.GIT_COMMIT}") + buildahpush.execute("waldhart", "${scmVars.GIT_COMMIT}") }