Revert "build: Temporarily disable Windows guest tests"

This reverts commit 83d57d3cce31b6f0750cb5f1fac8d3d311b03db2.

Signed-off-by: Anatol Belski <anbelski@linux.microsoft.com>
This commit is contained in:
Anatol Belski 2023-06-17 08:30:33 +02:00 committed by Rob Bradford
parent c39cdb3c1f
commit dec8d619d4

92
Jenkinsfile vendored
View File

@ -192,52 +192,52 @@ pipeline {
} }
} }
} }
// stage('Worker build - Windows guest') { stage('Worker build - Windows guest') {
// agent { node { label 'jammy' } } agent { node { label 'jammy' } }
// when { when {
// beforeAgent true beforeAgent true
// expression { expression {
// return runWorkers return runWorkers
// } }
// } }
// environment { environment {
// AZURE_CONNECTION_STRING = credentials('46b4e7d6-315f-4cc1-8333-b58780863b9b') AZURE_CONNECTION_STRING = credentials('46b4e7d6-315f-4cc1-8333-b58780863b9b')
// } }
// stages { stages {
// stage('Checkout') { stage('Checkout') {
// steps { steps {
// checkout scm checkout scm
// } }
// } }
// stage('Install azure-cli') { stage('Install azure-cli') {
// steps { steps {
// installAzureCli('jammy', 'amd64') installAzureCli('jammy', 'amd64')
// } }
// } }
// stage('Download assets') { stage('Download assets') {
// steps { steps {
// sh "mkdir ${env.HOME}/workloads" sh "mkdir ${env.HOME}/workloads"
// sh 'az storage blob download --container-name private-images --file "$HOME/workloads/windows-server-2022-amd64-2.raw" --name windows-server-2022-amd64-2.raw --connection-string "$AZURE_CONNECTION_STRING"' sh 'az storage blob download --container-name private-images --file "$HOME/workloads/windows-server-2022-amd64-2.raw" --name windows-server-2022-amd64-2.raw --connection-string "$AZURE_CONNECTION_STRING"'
// } }
// } }
// stage('Run Windows guest integration tests') { stage('Run Windows guest integration tests') {
// options { options {
// timeout(time: 1, unit: 'HOURS') timeout(time: 1, unit: 'HOURS')
// } }
// steps { steps {
// sh 'scripts/dev_cli.sh tests --integration-windows' sh 'scripts/dev_cli.sh tests --integration-windows'
// } }
// } }
// stage('Run Windows guest integration tests for musl') { stage('Run Windows guest integration tests for musl') {
// options { options {
// timeout(time: 1, unit: 'HOURS') timeout(time: 1, unit: 'HOURS')
// } }
// steps { steps {
// sh 'scripts/dev_cli.sh tests --integration-windows --libc musl' sh 'scripts/dev_cli.sh tests --integration-windows --libc musl'
// } }
// } }
// } }
// } }
stage('Worker build - Metrics') { stage('Worker build - Metrics') {
agent { node { label 'jammy-metrics' } } agent { node { label 'jammy-metrics' } }
when { when {