Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
Showing only changes of commit 562e88dc43 - Show all commits

6
Jenkinsfile vendored
View File

@ -3,6 +3,8 @@ pipeline {
stages {
stage('PHP 7.1') {
agent {
label 'php-7.1'
}
docker { image 'php:7.1-alpine' }
steps {
sh 'build/docker_install.sh > /dev/null'
@ -12,9 +14,10 @@ pipeline {
'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
}
}
}
stage('PHP 7.2') {
agent {
label 'php-7.2'
}
docker { image 'php:7.2-alpine' }
steps {
sh 'build/docker_install.sh > /dev/null'
@ -26,4 +29,3 @@ pipeline {
}
}
}
}