mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
build: Disable VFIO, metrics and rate limit testing
Bare metal x86-64 systems are offline Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
99
Jenkinsfile
vendored
99
Jenkinsfile
vendored
@@ -246,47 +246,6 @@ pipeline{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage ('Worker build VFIO') {
|
|
||||||
agent { node { label 'bionic-vfio' } }
|
|
||||||
when {
|
|
||||||
beforeAgent true
|
|
||||||
allOf {
|
|
||||||
branch 'main'
|
|
||||||
expression {
|
|
||||||
return runWorkers
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stages {
|
|
||||||
stage ('Checkout') {
|
|
||||||
steps {
|
|
||||||
checkout scm
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage ('Run VFIO integration tests') {
|
|
||||||
options {
|
|
||||||
timeout(time: 1, unit: 'HOURS')
|
|
||||||
}
|
|
||||||
steps {
|
|
||||||
sh "scripts/dev_cli.sh tests --integration-vfio"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage ('Run VFIO integration tests for musl') {
|
|
||||||
options {
|
|
||||||
timeout(time: 1, unit: 'HOURS')
|
|
||||||
}
|
|
||||||
steps {
|
|
||||||
sh "scripts/dev_cli.sh tests --integration-vfio --libc musl"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
post {
|
|
||||||
always {
|
|
||||||
sh "sudo chown -R jenkins.jenkins ${WORKSPACE}"
|
|
||||||
deleteDir()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage ('Worker build - Windows guest') {
|
stage ('Worker build - Windows guest') {
|
||||||
agent { node { label 'jammy' } }
|
agent { node { label 'jammy' } }
|
||||||
when {
|
when {
|
||||||
@@ -367,64 +326,6 @@ pipeline{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage ('Worker build - Metrics') {
|
|
||||||
agent { node { label 'focal-metrics' } }
|
|
||||||
when {
|
|
||||||
branch 'main'
|
|
||||||
beforeAgent true
|
|
||||||
expression {
|
|
||||||
return runWorkers
|
|
||||||
}
|
|
||||||
}
|
|
||||||
environment {
|
|
||||||
METRICS_PUBLISH_KEY = credentials('52e0945f-ce7a-43d1-87af-67d1d87cc40f')
|
|
||||||
}
|
|
||||||
stages {
|
|
||||||
stage ('Checkout') {
|
|
||||||
steps {
|
|
||||||
checkout scm
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage ('Run metrics tests') {
|
|
||||||
options {
|
|
||||||
timeout(time: 1, unit: 'HOURS')
|
|
||||||
}
|
|
||||||
steps {
|
|
||||||
sh 'scripts/dev_cli.sh tests --metrics -- -- --report-file /root/workloads/metrics.json'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage ('Upload metrics report') {
|
|
||||||
steps {
|
|
||||||
sh 'curl -X PUT https://cloud-hypervisor-metrics.azurewebsites.net/api/publishmetrics -H "x-functions-key: $METRICS_PUBLISH_KEY" -T ~/workloads/metrics.json'
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage ('Worker build - Rate Limiter') {
|
|
||||||
agent { node { label 'focal-metrics' } }
|
|
||||||
when {
|
|
||||||
branch 'main'
|
|
||||||
beforeAgent true
|
|
||||||
expression {
|
|
||||||
return runWorkers
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stages {
|
|
||||||
stage ('Checkout') {
|
|
||||||
steps {
|
|
||||||
checkout scm
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage ('Run rate-limiter integration tests') {
|
|
||||||
options {
|
|
||||||
timeout(time: 10, unit: 'MINUTES')
|
|
||||||
}
|
|
||||||
steps {
|
|
||||||
sh "scripts/dev_cli.sh tests --integration-rate-limiter"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user