From 57bb3c859caad2250efe9341cdec92c5a179a595 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Thu, 16 Mar 2023 15:03:45 -0400 Subject: [PATCH] Attempt to add code quality stuff back to Jenkins --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index cba2022..b5a32a1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,7 +8,6 @@ pipeline { sh 'rm -f composer.lock' sh 'phive --no-progress install --trust-gpg-keys 67F861C3D889C656' sh 'php composer.phar install --ignore-platform-reqs' - sh 'cd tools && composer install --ignore-platform-reqs' } } stage("Test PHP 8") { @@ -56,6 +55,7 @@ pipeline { stage('Code Cleanliness') { agent any steps { + sh 'cd tools && composer install --ignore-platform-reqs && cd ..' sh 'mkdir -p build/logs' sh 'touch build/logs/phpstan.log' sh 'composer run-script ci:phpstan'