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:
Bo Chen 2022-09-08 10:58:54 -07:00 committed by Rob Bradford
parent ef1983ee60
commit c8fe101b6f

25
Jenkinsfile vendored
View File

@ -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"
}
}
}
}
}
}
}