Skip to content

Commit

Permalink
Try to avoid using multiple Jenkins node for performance testing
Browse files Browse the repository at this point in the history
  • Loading branch information
tisto committed Apr 7, 2023
1 parent df005ab commit 1ccd897
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

pipeline {

agent any
agent {
label 'jmeter'
}

triggers{
cron('H 23 * * *')
Expand All @@ -18,9 +20,7 @@ pipeline {

// Performance Tests
stage('Performance Tests') {
agent {
label 'jmeter'
}

steps {
deleteDir()
checkout scm
Expand Down

0 comments on commit 1ccd897

Please sign in to comment.