From 2f75279113ba048a855ec36fdec9bccc58eac550 Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Fri, 5 Feb 2021 15:03:19 -0500 Subject: [PATCH] Attempt to fix build --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d5b4a77..cad5f75 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,7 +2,7 @@ node { checkout scm docker.image("memcached:latest").withRun("-p 11212:11211") { c -> docker.image("redis:latest").withRun("-p 6380:6379") { d -> - docker.image("php:7.4") { + docker.image("php:7.4").withRun("") { p -> steps { sh "sh build/docker_install.sh > /dev/null" sh "curl -sS https://getcomposer.org/installer | php" @@ -10,7 +10,7 @@ node { sh "phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never" } } - docker.image("php:8") { + docker.image("php:8").withRun("") { p -> steps { sh "sh build/docker_install.sh > /dev/null" sh "curl -sS https://getcomposer.org/installer | php"