mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-02-01 17:35:19 +00:00
Jenkinsfile: Add CI worker for rate limiter tests
Given rate limiter tests are performance related, they need to be tested on a bare-metal machine. It is now using the same node as the metrics CI. Signed-off-by: Bo Chen <chen.bo@intel.com>
This commit is contained in:
parent
ef1983ee60
commit
c8fe101b6f
25
Jenkinsfile
vendored
25
Jenkinsfile
vendored
@ -400,6 +400,31 @@ pipeline{
|
||||
}
|
||||
}
|
||||
}
|
||||
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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user