summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastiaan van Stijn <thaJeztah@users.noreply.github.com>2022-01-13 21:18:01 +0100
committerGitHub <noreply@github.com>2022-01-13 21:18:01 +0100
commit403e9ad92d0104e0f4cbb08142674ad1f6f20364 (patch)
treeffef696827baacfe359067dd374c6ac4730e38ea
parentd7acf03665efa3ca2d77665a333a50247a38b245 (diff)
parent9326ea5b99aeaeff05df7bfe8d2b5cedb4c798dd (diff)
downloaddocker-403e9ad92d0104e0f4cbb08142674ad1f6f20364.tar.gz
Merge pull request #43143 from thaJeztah/jenkinsfile_remove_rs1
Jenkinsfile: remove Windows RS1 as it reached end of support
-rw-r--r--Jenkinsfile68
1 files changed, 0 insertions, 68 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 00a6f955e9..92043c38d4 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -16,7 +16,6 @@ pipeline {
booleanParam(name: 'arm64', defaultValue: true, description: 'ARM (arm64) Build/Test')
booleanParam(name: 's390x', defaultValue: false, description: 'IBM Z (s390x) Build/Test')
booleanParam(name: 'ppc64le', defaultValue: false, description: 'PowerPC (ppc64le) Build/Test')
- booleanParam(name: 'windowsRS1', defaultValue: false, description: 'Windows 2016 (RS1) Build/Test')
booleanParam(name: 'windowsRS5', defaultValue: true, description: 'Windows 2019 (RS5) Build/Test')
booleanParam(name: 'windows2022', defaultValue: true, description: 'Windows 2022 (LTSC) Build/Test')
booleanParam(name: 'windows2022containerd', defaultValue: true, description: 'Windows 2022 (LTSC) with containerd Build/Test')
@@ -1062,73 +1061,6 @@ pipeline {
}
}
}
- stage('win-RS1') {
- when {
- beforeAgent true
- // Skip this stage on PRs unless the windowsRS1 checkbox is selected
- anyOf {
- not { changeRequest() }
- expression { params.windowsRS1 }
- }
- }
- environment {
- DOCKER_BUILDKIT = '0'
- DOCKER_DUT_DEBUG = '1'
- SKIP_VALIDATION_TESTS = '1'
- SOURCES_DRIVE = 'd'
- SOURCES_SUBDIR = 'gopath'
- TESTRUN_DRIVE = 'd'
- TESTRUN_SUBDIR = "CI"
- WINDOWS_BASE_IMAGE = 'mcr.microsoft.com/windows/servercore'
- WINDOWS_BASE_IMAGE_TAG = 'ltsc2016'
- }
- agent {
- node {
- customWorkspace 'd:\\gopath\\src\\github.com\\docker\\docker'
- label 'windows-2016'
- }
- }
- stages {
- stage("Print info") {
- steps {
- sh 'docker version'
- sh 'docker info'
- }
- }
- stage("Run tests") {
- steps {
- powershell '''
- $ErrorActionPreference = 'Stop'
- [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
- Invoke-WebRequest https://github.com/moby/docker-ci-zap/blob/master/docker-ci-zap.exe?raw=true -OutFile C:/Windows/System32/docker-ci-zap.exe
- ./hack/ci/windows.ps1
- exit $LastExitCode
- '''
- }
- }
- }
- post {
- always {
- junit testResults: 'bundles/junit-report-*.xml', allowEmptyResults: true
- catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE', message: 'Failed to create bundles.tar.gz') {
- powershell '''
- cd $env:WORKSPACE
- $bundleName="windowsRS1-integration"
- Write-Host -ForegroundColor Green "Creating ${bundleName}-bundles.zip"
-
- # archiveArtifacts does not support env-vars to , so save the artifacts in a fixed location
- Compress-Archive -Path "bundles/CIDUT.out", "bundles/CIDUT.err", "bundles/junit-report-*.xml" -CompressionLevel Optimal -DestinationPath "${bundleName}-bundles.zip"
- '''
-
- archiveArtifacts artifacts: '*-bundles.zip', allowEmptyArchive: true
- }
- }
- cleanup {
- sh 'make clean'
- deleteDir()
- }
- }
- }
stage('win-RS5') {
when {
beforeAgent true