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
1 changed files with 25 additions and 0 deletions
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…
Add table
Add a link
Reference in a new issue