From 592e9d2c86ebb51b5c19911cbe5aeab945a49844 Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Thu, 11 Oct 2018 12:50:29 -0400 Subject: [PATCH] Closer to working Jenkins --- Jenkinsfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ad067ab5..5b988b0c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,7 +6,8 @@ pipeline { docker { image 'php:7.1-alpine' } } steps { - sh 'build/docker_install.sh > /dev/null' + sh 'chmod +x build/docker_install.sh' + sh 'build/docker_install.sh' sh 'apk add --no-cache php7-phpdbg' sh 'curl -sS https://getcomposer.org/installer | php' sh 'php composer.phar install --ignore-platform-reqs' @@ -18,7 +19,8 @@ pipeline { docker { image 'php:7.2-alpine' } } steps { - sh 'build/docker_install.sh > /dev/null' + sh 'chmod +x build/docker_install.sh' + sh 'build/docker_install.sh' sh 'apk add --no-cache php7-phpdbg' sh 'curl -sS https://getcomposer.org/installer | php' sh 'php composer.phar install --ignore-platform-reqs'