Closer to working Jenkins
aviat/HummingBirdAnimeClient/develop There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2018-10-11 12:50:29 -04:00
parent ef33664f6f
commit 592e9d2c86
1 changed files with 4 additions and 2 deletions

6
Jenkinsfile vendored
View File

@ -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'