From 52c125d2499b25444ce966565305de066297517e Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Fri, 5 Feb 2021 15:05:07 -0500 Subject: [PATCH] Attempt to fix build --- Jenkinsfile | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index cad5f75..d95c6c8 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,20 +3,16 @@ node { docker.image("memcached:latest").withRun("-p 11212:11211") { c -> docker.image("redis:latest").withRun("-p 6380:6379") { d -> docker.image("php:7.4").withRun("") { p -> - steps { - sh "sh build/docker_install.sh > /dev/null" - sh "curl -sS https://getcomposer.org/installer | php" - sh "php composer.phar install --ignore-platform-reqs" - sh "phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never" - } + sh "sh build/docker_install.sh > /dev/null" + sh "curl -sS https://getcomposer.org/installer | php" + sh "php composer.phar install --ignore-platform-reqs" + sh "phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never" } docker.image("php:8").withRun("") { p -> - steps { - sh "sh build/docker_install.sh > /dev/null" - sh "curl -sS https://getcomposer.org/installer | php" - sh "php composer.phar install --ignore-platform-reqs" - sh "phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never" - } + sh "sh build/docker_install.sh > /dev/null" + sh "curl -sS https://getcomposer.org/installer | php" + sh "php composer.phar install --ignore-platform-reqs" + sh "phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never" } } }