Jenkins CI setup, try five
Gitea - aviat/banker/master There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2018-10-12 09:42:58 -04:00
parent 8368c91ff4
commit c904792681
1 changed files with 36 additions and 21 deletions

57
Jenkinsfile vendored
View File

@ -3,13 +3,18 @@ pipeline {
stages { stages {
stage('PHP 7') { stage('PHP 7') {
agent { agent {
docker.image('memcached:latest').withRun('-p 11211:11211') { c -> node {
docker.image('redis:latest').withRun('-p 6379:6379') { d -> checkout scm
docker.image('php:7') { docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
sh 'sh build/docker_install.sh > /dev/null' docker.image('redis:latest').withRun('-p 6379:6379') { d ->
sh 'curl -sS https://getcomposer.org/installer | php' docker.image('php:7') {
sh 'php composer.phar install --ignore-platform-reqs' steps {
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never' sh 'sh build/docker_install.sh > /dev/null'
sh 'curl -sS https://getcomposer.org/installer | php'
sh 'php composer.phar install --ignore-platform-reqs'
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
}
}
} }
} }
} }
@ -17,13 +22,18 @@ pipeline {
} }
stage('PHP 7.1') { stage('PHP 7.1') {
agent { agent {
docker.image('memcached:latest').withRun('-p 11211:11211') { c -> node {
docker.image('redis:latest').withRun('-p 6379:6379') { d -> checkout scm
docker.image('php:7.1') { docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
sh 'sh build/docker_install.sh > /dev/null' docker.image('redis:latest').withRun('-p 6379:6379') { d ->
sh 'curl -sS https://getcomposer.org/installer | php' docker.image('php:7.1') {
sh 'php composer.phar install --ignore-platform-reqs' steps {
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never' sh 'sh build/docker_install.sh > /dev/null'
sh 'curl -sS https://getcomposer.org/installer | php'
sh 'php composer.phar install --ignore-platform-reqs'
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
}
}
} }
} }
} }
@ -31,13 +41,18 @@ pipeline {
} }
stage('PHP 7.2') { stage('PHP 7.2') {
agent { agent {
docker.image('memcached:latest').withRun('-p 11211:11211') { c -> node {
docker.image('redis:latest').withRun('-p 6379:6379') { d -> checkout scm
docker.image('php:7.2') { docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
sh 'sh build/docker_install.sh > /dev/null' docker.image('redis:latest').withRun('-p 6379:6379') { d ->
sh 'curl -sS https://getcomposer.org/installer | php' docker.image('php:7.2') {
sh 'php composer.phar install --ignore-platform-reqs' steps {
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never' sh 'sh build/docker_install.sh > /dev/null'
sh 'curl -sS https://getcomposer.org/installer | php'
sh 'php composer.phar install --ignore-platform-reqs'
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
}
}
} }
} }
} }