Skip to content

Commit

Permalink
Merge pull request #161 from jeffret-b/remoting-4.6
Browse files Browse the repository at this point in the history
Upgrade to Remoting 4.6.
  • Loading branch information
slide committed Nov 4, 2020
2 parents 7457861 + afbf6c0 commit 3ac6693
Show file tree
Hide file tree
Showing 12 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion 11/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

FROM adoptopenjdk/openjdk11:alpine

ARG VERSION=4.3
ARG VERSION=4.6
ARG user=jenkins
ARG group=jenkins
ARG uid=1000
Expand Down
2 changes: 1 addition & 1 deletion 11/buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

FROM openjdk:11-jdk-buster

ARG VERSION=4.3
ARG VERSION=4.6
ARG user=jenkins
ARG group=jenkins
ARG uid=1000
Expand Down
2 changes: 1 addition & 1 deletion 11/stretch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

FROM openjdk:11-jdk-stretch

ARG VERSION=4.3
ARG VERSION=4.6
ARG user=jenkins
ARG group=jenkins
ARG uid=1000
Expand Down
2 changes: 1 addition & 1 deletion 11/windows/nanoserver-1809/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ RUN Write-Host ('Downloading https://github.com/AdoptOpenJDK/openjdk11-binaries/
Write-Host 'Removing openjdk.zip ...'; `
Remove-Item openjdk.zip -Force

ARG VERSION=4.3
ARG VERSION=4.6
LABEL Description="This is a base image, which provides the Jenkins agent executable (agent.jar)" Vendor="Jenkins project" Version="${VERSION}"

ARG GIT_VERSION=2.26.0
Expand Down
2 changes: 1 addition & 1 deletion 11/windows/windowsservercore-1809/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ FROM adoptopenjdk:11-jdk-hotspot-windowsservercore-1809

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

ARG VERSION=4.3
ARG VERSION=4.6
LABEL Description="This is a base image, which provides the Jenkins agent executable (agent.jar)" Vendor="Jenkins project" Version="${VERSION}"

ARG GIT_VERSION=2.26.0
Expand Down
2 changes: 1 addition & 1 deletion 8/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
# Needs upgrade when/if there is an official alpine image.
FROM adoptopenjdk/openjdk8:jdk8u272-b10-alpine

ARG VERSION=4.3
ARG VERSION=4.6
ARG user=jenkins
ARG group=jenkins
ARG uid=1000
Expand Down
2 changes: 1 addition & 1 deletion 8/buster/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

FROM openjdk:8-jdk-buster

ARG VERSION=4.3
ARG VERSION=4.6
ARG user=jenkins
ARG group=jenkins
ARG uid=1000
Expand Down
2 changes: 1 addition & 1 deletion 8/stretch/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

FROM openjdk:8-jdk-stretch

ARG VERSION=4.3
ARG VERSION=4.6
ARG user=jenkins
ARG group=jenkins
ARG uid=1000
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 @@ -54,7 +54,7 @@ RUN Write-Host ('Downloading https://github.com/AdoptOpenJDK/openjdk8-binaries/r
Write-Host 'Removing openjdk.zip ...'; `
Remove-Item openjdk.zip -Force

ARG VERSION=4.3
ARG VERSION=4.6
LABEL Description="This is a base image, which provides the Jenkins agent executable (agent.jar)" Vendor="Jenkins project" Version="${VERSION}"

ARG GIT_VERSION=2.26.0
Expand Down
2 changes: 1 addition & 1 deletion 8/windows/windowsservercore-1809/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ FROM adoptopenjdk:8-jdk-hotspot-windowsservercore-1809

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]

ARG VERSION=4.3
ARG VERSION=4.6
LABEL Description="This is a base image, which provides the Jenkins agent executable (agent.jar)" Vendor="Jenkins project" Version="${VERSION}"

ARG GIT_VERSION=2.26.0
Expand Down
2 changes: 1 addition & 1 deletion make.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Param(
[String] $Target = "build",
[String] $AdditionalArgs = '',
[String] $Build = '',
[String] $RemotingVersion = '4.3',
[String] $RemotingVersion = '4.6',
[String] $BuildNumber = "6",
[switch] $PushVersions = $false
)
Expand Down
2 changes: 1 addition & 1 deletion tests/agent.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ $AGENT_CONTAINER='pester-jenkins-jnlp-agent'
$SHELL="powershell.exe"

$FOLDER = Get-EnvOrDefault 'FOLDER' ''
$VERSION = Get-EnvOrDefault 'VERSION' '4.3-1'
$VERSION = Get-EnvOrDefault 'VERSION' '4.6-1'

$REAL_FOLDER=Resolve-Path -Path "$PSScriptRoot/../${FOLDER}"

Expand Down

0 comments on commit 3ac6693

Please sign in to comment.