From 2cd44f4645062d32ecce33f8ca447fa4ada4851e Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Fri, 5 Feb 2021 15:23:49 -0500 Subject: [PATCH] Attempt to fix build --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7ad4561..88ce7fb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,13 +2,13 @@ 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").withRun("-e REDIS_HOST=redis -e REDIS_PORT=11212 -e MEMCACHED_HOST=mem MEMCACHED_PORT=6380 --link ${d.id}:redis --link ${c.id}:mem") { p -> + docker.image("php:7.4").withRun("-e REDIS_HOST=redis -e REDIS_PORT=11212 -e MEMCACHED_HOST=mem -e MEMCACHED_PORT=6380 --link ${d.id}:redis --link ${c.id}:mem") { p -> 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("-e REDIS_HOST=redis -e REDIS_PORT=11212 -e MEMCACHED_HOST=mem MEMCACHED_PORT=6380 --link ${d.id}:redis --link ${c.id}:mem") { p -> + docker.image("php:8").withRun("-e REDIS_HOST=redis -e REDIS_PORT=11212 -e MEMCACHED_HOST=mem -e MEMCACHED_PORT=6380 --link ${d.id}:redis --link ${c.id}:mem") { p -> sh "sh build/docker_install.sh > /dev/null" sh "curl -sS https://getcomposer.org/installer | php" sh "php composer.phar install --ignore-platform-reqs"