File tree Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Expand file tree Collapse file tree 2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 11# This Dockerfile is used to create a Jenkins server with a specific version and pre-configured settings.
22
33# We start by defining an ARG for the Jenkins version. This allows us to easily change the version of Jenkins we want to use.
4- ARG JENKINS_VERSION=2.452.3
4+ ARG JENKINS_VERSION=2.447
55
66# We then use the official Jenkins image with the specified version as our base image.
77FROM jenkins/jenkins:"${JENKINS_VERSION}"
Original file line number Diff line number Diff line change 11---
2- name : Bump Jenkins' LTS version in the controller Dockerfile
2+ name : Bump Jenkins' Weekly version in the controller Dockerfile
33
44scms :
55 default :
@@ -14,35 +14,35 @@ scms:
1414 branch : " {{ .github.branch }}"
1515
1616sources :
17- JenkinsLatestLTS :
18- name : Get the latest Jenkins LTS version
19- kind : shell
17+ JenkinsLatestWeekly :
18+ name : Get the latest Jenkins Weekly version
19+ kind : jenkins
2020 spec :
21- command : bash ./updatecli/scripts/jenkins-lts.sh 0 # source input value passed as argument
21+ release : weekly
2222
2323conditions :
24- # Test that the latest LTS Jenkins version exists
25- jenkinsLatestLTSVersion :
24+ # Test that the latest Weekly Jenkins version exists
25+ jenkinsLatestWeeklyVersion :
2626 kind : jenkins
27- sourceid : JenkinsLatestLTS
27+ sourceid : JenkinsLatestWeekly
2828
2929targets :
30- setJenkinsLatestLTS :
30+ setJenkinsLatestWeekly :
3131 kind : dockerfile
3232 spec :
3333 file : dockerfiles/Dockerfile
3434 instruction :
3535 keyword : " ARG"
3636 matcher : " JENKINS_VERSION"
37- name : " [jenkins-controller] Bump Jenkins LTS version in dockerfiles/Dockerfile"
38- sourceid : JenkinsLatestLTS
37+ name : " [jenkins-controller] Bump Jenkins Weekly version in dockerfiles/Dockerfile"
38+ sourceid : JenkinsLatestWeekly
3939 scmid : default
4040
4141actions :
4242 default :
4343 kind : github/pullrequest
4444 scmid : default
45- title : Update Jenkins LTS versions to {{ source "JenkinsLatestLTS " }} in the controller Dockerfile
45+ title : Update Jenkins Weekly versions to {{ source "JenkinsLatestWeekly " }} in the controller Dockerfile
4646 spec :
4747 labels :
4848 - dependencies
You can’t perform that action at this time.
0 commit comments