Attempt to enable use of more than one agent
All checks were successful
Tests / PHPStan (static analysis) <sub>Send us [feedback](https://github.com/jenkinsci/junit-plugin/issues)
gitea/evoadmin-web/pipeline/pr-master This commit looks good

Primarily so that we could use shellcheck in the future on top of
PHPStan.
This commit is contained in:
Mathieu Trossevin 2023-11-15 10:57:20 +01:00
parent af94efde45
commit 7b29422730
Signed by: mtrossevin
GPG key ID: D1DBB7EA828374E9

View file

@ -1,11 +1,12 @@
pipeline {
agent {
docker {
image 'php:8.2-cli'
}
}
agent none
stages {
stage('PHPStan (static analysis)') {
agent {
docker {
image 'php:8.2-cli'
}
}
steps {
script {
sh 'curl -fsSL https://github.com/phpstan/phpstan/releases/download/1.10.41/phpstan.phar -o phpstan.phar'