Skip to content

Commit

Permalink
Revert Jenkins version from properties file (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinGroscheTT committed Aug 5, 2024
1 parent 9e61107 commit 44aab73
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Jenkinsfile.internal
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,7 @@ pipeline {
// The needed artifact is only built for main and pull requests -> skip this job otherwise
when { branch pattern: "PR-\\d+|main", comparator: "REGEXP"}
steps {
script {
gradle_properties = readProperties file: 'gradle.properties'
def currentJenkinsVersion = gradle_properties['jenkinsVersion'] ?: '2.452.3'
build job: '../systemTests', parameters: [string(name: 'artifactName', value: "${JOB_BASE_NAME}"), string(name: 'commitHash', value: "${GIT_COMMIT}"), string(name: 'jenkinsVersion', value: "${currentJenkinsVersion}")]
}
build job: '../systemTests', parameters: [string(name: 'artifactName', value: "${JOB_BASE_NAME}"), string(name: 'commitHash', value: "${GIT_COMMIT}")]
}
}
stage('Container Tests') {
Expand Down

0 comments on commit 44aab73

Please sign in to comment.