build: Temporarily disable Windows guest tests

Windows guests tests are failing consistently.

See: #5400

Signed-off-by: Rob Bradford <rbradford@rivosinc.com>
This commit is contained in:
Rob Bradford 2023-04-22 09:19:38 +01:00 committed by Rob Bradford
parent a0babfb9c1
commit 83d57d3cce

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 {