You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
412 B
14 lines
412 B
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Performance Testing') {
|
|
steps {
|
|
echo 'Installing k6'
|
|
sh 'sudo chmod +x setup_k6.sh'
|
|
sh 'sudo ./setup_k6.sh'
|
|
echo 'Running K6 performance tests...'
|
|
sh 'k6 run --out influxdb=http://influxdb:8086/k6 loadtests/k6-script.js'
|
|
}
|
|
}
|
|
}
|
|
}
|