Version 5.1 - All the GraphQL #32
18
Jenkinsfile
vendored
18
Jenkinsfile
vendored
@ -4,27 +4,25 @@ pipeline {
|
|||||||
stage('PHP 7.1') {
|
stage('PHP 7.1') {
|
||||||
agent {
|
agent {
|
||||||
docker { image 'php:7.1-alpine' }
|
docker { image 'php:7.1-alpine' }
|
||||||
label 'php-7.1'
|
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh 'build/docker_install.sh > /dev/null'
|
sh 'build/docker_install.sh > /dev/null'
|
||||||
'apk add --no-cache php7-phpdbg'
|
sh 'apk add --no-cache php7-phpdbg'
|
||||||
'curl -sS https://getcomposer.org/installer | php'
|
sh 'curl -sS https://getcomposer.org/installer | php'
|
||||||
'php composer.phar install --ignore-platform-reqs'
|
sh 'php composer.phar install --ignore-platform-reqs'
|
||||||
'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
|
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage('PHP 7.2') {
|
stage('PHP 7.2') {
|
||||||
agent {
|
agent {
|
||||||
docker { image 'php:7.2-alpine' }
|
docker { image 'php:7.2-alpine' }
|
||||||
label 'php-7.2'
|
|
||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
sh 'build/docker_install.sh > /dev/null'
|
sh 'build/docker_install.sh > /dev/null'
|
||||||
'apk add --no-cache php7-phpdbg'
|
sh 'apk add --no-cache php7-phpdbg'
|
||||||
'curl -sS https://getcomposer.org/installer | php'
|
sh 'curl -sS https://getcomposer.org/installer | php'
|
||||||
'php composer.phar install --ignore-platform-reqs'
|
sh 'php composer.phar install --ignore-platform-reqs'
|
||||||
'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
|
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user