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