From cc7291c1a6f4399b9ef68f4b24b99b353080036c Mon Sep 17 00:00:00 2001 From: dtwaddle2-r7 Date: Fri, 17 Nov 2023 11:59:35 +0000 Subject: [PATCH] Try installing the semver-tool instead of pulling git repo --- Jenkinsfile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c6b462b7..b75f0eb3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,13 +1,10 @@ @Library('jenkins-octo-shared-libraries@master') _ s3ReleasePipeline( testCmd: [ - 'Debug: Try checkout semver-tool': { - checkout([ - $class: 'GitSCM', - branches: [[name: 'refs/tags/3.3.0']], - userRemoteConfigs: [[credentialsId: 'github-app-key', url: 'git@github.com:fsaintjacques/semver-tool.git']] - ]) - sh 'ls -l' + 'Debug: install semver-tool': { + sh 'wget -O semver-tool https://raw.githubusercontent.com/fsaintjacques/semver-tool/3.3.0/src/semver ' + sh 'chmod +x semver-tool/semver' + sh 'semver-tool/semver --version' } ] ) \ No newline at end of file