evoadmin-web/.Jenkinsfile

23 lines
647 B
Plaintext
Raw Normal View History

2023-11-13 13:59:47 +01:00
pipeline {
agent {
docker {
image 'php:8.2-cli'
}
}
stages {
stage('PHPStan (static analysis)') {
steps {
script {
sh 'curl -fsSL https://github.com/phpstan/phpstan/releases/download/1.10.41/phpstan.phar -o phpstan.phar'
sh 'php ./phpstan.phar analyse --configuration=phpstan.neon --memory-limit=512M --error-format=junit > phpstan-results.junit.xml'
}
}
post {
always {
junit 'phpstan-results.junit.xml'
}
}
}
}
}