evoadmin-web/.Jenkinsfile

24 lines
646 B
Plaintext
Raw Permalink Normal View History

2023-11-13 13:59:47 +01:00
pipeline {
agent none
2023-11-13 13:59:47 +01:00
stages {
stage('PHPStan (static analysis)') {
agent {
docker {
image 'php:8.2-cli'
}
}
2023-11-13 13:59:47 +01:00
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'
}
}
}
}
}