[BAEL-5894] Add Java code for Gatling perf test

This commit is contained in:
uzma
2023-03-14 11:28:54 +00:00
parent 1db057ebc8
commit abc99812cf
12 changed files with 512 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
pipeline {
agent any
stages {
stage("Build Maven") {
steps {
sh 'mvn -B clean package'
}
}
stage("Run Gatling") {
steps {
sh 'mvn gatling:test'
}
post {
always {
gatlingArchive()
}
}
}
}
}