Skip to content

Commit f241f91

Browse files
authored
ci: use the microbenchmarks-pool (#2703)
1 parent c076bb1 commit f241f91

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.ci/load/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ pipeline {
164164
stage('execute test') {
165165
parallel {
166166
stage('Load generation') {
167-
agent { label 'metal' }
167+
agent { label 'microbenchmarks-pool' }
168168
steps {
169169
echo 'Preparing load generation..'
170170
unstash('scripts')

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ pipeline {
290290
* The result JSON files are also archive into Jenkins.
291291
*/
292292
stage('Benchmarks') {
293-
agent { label 'linux && metal' }
293+
agent { label 'microbenchmarks-pool' }
294294
options { skipDefaultCheckout() }
295295
environment {
296296
NO_BUILD = "true"

scripts/jenkins/run-benchmarks.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ function setUp() {
2828
then
2929
CORE_INDEX=7
3030
BASE_FREQ="1.9GHz"
31+
elif [ "${CPU_MODEL}" == "12th Gen Intel(R) Core(TM) i5-12500 " ]
32+
then
33+
CORE_INDEX=11
34+
BASE_FREQ="3.0GHz"
3135
else
3236
>&2 echo "Cannot determine base frequency for CPU model [${CPU_MODEL}]. Please adjust the build script."
3337
exit 1

0 commit comments

Comments
 (0)