Skip to content

Commit

Permalink
feat(remoting) bump to 3028.va_a_436db_35078
Browse files Browse the repository at this point in the history
Signed-off-by: Damien Duportal <damien.duportal@gmail.com>
  • Loading branch information
dduportal committed Oct 23, 2022
1 parent 158e58d commit 6f9d596
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion 8/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
ARG JAVA_VERSION="8u345-b01"
FROM eclipse-temurin:${JAVA_VERSION}-jdk-alpine

ARG VERSION=4.13
ARG VERSION=3028.va_a_436db_35078
ARG user=jenkins
ARG group=jenkins
ARG uid=1000
Expand Down
4 changes: 2 additions & 2 deletions 8/bullseye/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ FROM eclipse-temurin:${JAVA_VERSION}-jdk-focal AS jre-build

FROM debian:bullseye-20221004

ARG VERSION=4.13
ARG VERSION=3028.va_a_436db_35078
ARG user=jenkins
ARG group=jenkins
ARG uid=1000
Expand All @@ -42,7 +42,7 @@ RUN apt-get update \
git-lfs \
curl \
fontconfig \
&& curl --create-dirs -fsSLo /usr/share/jenkins/agent.jar https://repo.jenkins-ci.org/public/org/jenkins-ci/main/remoting/${VERSION}/remoting-${VERSION}.jar \
&& curl --create-dirs -fsSLo /usr/share/jenkins/agent.jar "https://repo.jenkins-ci.org/public/org/jenkins-ci/main/remoting/${VERSION}/remoting-${VERSION}.jar" \
&& chmod 755 /usr/share/jenkins \
&& chmod 644 /usr/share/jenkins/agent.jar \
&& ln -sf /usr/share/jenkins/agent.jar /usr/share/jenkins/slave.jar \
Expand Down
2 changes: 1 addition & 1 deletion 8/windows/nanoserver-1809/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ ARG AGENT_WORKDIR=${AGENT_ROOT}/Work
ENV AGENT_WORKDIR=${AGENT_WORKDIR}

# Get the Agent from the Jenkins Artifacts Repository
ARG VERSION=4.13
ARG VERSION=3028.va_a_436db_35078
LABEL Description="This is a base image, which provides the Jenkins agent executable (agent.jar)" Vendor="Jenkins project" Version="${VERSION}"
RUN echo $('https://repo.jenkins-ci.org/public/org/jenkins-ci/main/remoting/{0}/remoting-{0}.jar' -f $env:VERSION)
RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; `
Expand Down
2 changes: 1 addition & 1 deletion 8/windows/windowsservercore-ltsc2019/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ ARG AGENT_WORKDIR=${AGENT_ROOT}/Work
ENV AGENT_WORKDIR=${AGENT_WORKDIR}

# Get the Agent from the Jenkins Artifacts Repository
ARG VERSION=4.13
ARG VERSION=3028.va_a_436db_35078
LABEL Description="This is a base image, which provides the Jenkins agent executable (agent.jar)" Vendor="Jenkins project" Version="${VERSION}"
RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; `
Invoke-WebRequest $('https://repo.jenkins-ci.org/public/org/jenkins-ci/main/remoting/{0}/remoting-{0}.jar' -f $env:VERSION) -OutFile $(Join-Path C:/ProgramData/Jenkins $env:AGENT_FILENAME) -UseBasicParsing ; `
Expand Down
4 changes: 2 additions & 2 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Param(
[String] $Target = "build",
[String] $AdditionalArgs = '',
[String] $Build = '',
[String] $RemotingVersion = '4.6',
[String] $BuildNumber = "6",
[String] $RemotingVersion = '3028.va_a_436db_35078',
[String] $BuildNumber = '1',
[switch] $PushVersions = $false,
[switch] $DisableEnvProps = $false
)
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ OPTIND=1

target="build"
build_number=""
remoting_version="4.3"
remoting_version="3028.va_a_436db_35078"
disable_env_props=0
exit_result=0

Expand Down
4 changes: 2 additions & 2 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ group "windows" {
}

variable "REMOTING_VERSION" {
default = "4.3"
default = "3028.va_a_436db_35078"
}

variable "REGISTRY" {
Expand All @@ -38,7 +38,7 @@ variable "JENKINS_REPO" {
}

variable "BUILD_NUMBER" {
default = "6"
default = "1"
}

variable "ON_TAG" {
Expand Down

0 comments on commit 6f9d596

Please sign in to comment.