jenkins-lib

Jenkins shared library
git clone https://git.in0rdr.ch/jenkins-lib.git
Log | Files | Refs | Pull requests |Archive | README

commit c9806554ff0574a6ad5c27035c96c20944b896e0
parent 80daeab117367e08f459d03b121bb6c34ba7b31d
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Sat,  2 Aug 2025 08:17:25 +0200

feat(updatecli): remove old var

Diffstat:
Dvars/updatecli.groovy | 47-----------------------------------------------
1 file changed, 0 insertions(+), 47 deletions(-)

diff --git a/vars/updatecli.groovy b/vars/updatecli.groovy @@ -1,47 +0,0 @@ -def call() { - pipeline { - agent { - docker { - label 'podman' - image 'ghcr.io/updatecli/updatecli:latest' - //args '-u root --entrypoint=' - } - } - - stages { - stage('Check configuration update') { - steps { - script { - sh ''' - updatecli diff - ''' - } - } - } - //stage('Apply configuration update') { - // steps { - // script { - // sh ''' - // updatecli apply - // ''' - // } - // } - //} - //stage('Commit configuration update') { - // steps { - // script { - // sh ''' - // git add *.json - // git commit -m "chore(deps): bump npm dependencies" - // ''' - // } - // } - //} - } - //post { - // always { - // archiveArtifacts artifacts: 'gitleaks-report.json', fingerprint: true - // } - //} - } -}