Skip to content

Commit 85afcc9

Browse files
authored
Weekly (#449)
* fix(docker): Stable to weekly. * fix(docker): Stable to weekly.
1 parent 31ff2e2 commit 85afcc9

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

dockerfiles/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.
77
FROM jenkins/jenkins:"${JENKINS_VERSION}"

updatecli/updatecli.d/jenkins-lts.yaml renamed to updatecli/updatecli.d/jenkins-weekly.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Bump Jenkins' LTS version in the controller Dockerfile
2+
name: Bump Jenkins' Weekly version in the controller Dockerfile
33

44
scms:
55
default:
@@ -14,35 +14,35 @@ scms:
1414
branch: "{{ .github.branch }}"
1515

1616
sources:
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

2323
conditions:
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

2929
targets:
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

4141
actions:
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

0 commit comments

Comments
 (0)