4.1 Beta...ish #12

Merged
timw4mail merged 88 commits from develop into master 2018-11-05 13:15:59 -05:00
1 changed files with 4 additions and 2 deletions
Showing only changes of commit 592e9d2c86 - Show all commits

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'