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

This commit is contained in:
Timothy Warren 2018-10-12 09:50:16 -04:00
parent 1850055a24
commit b694230f0b
1 changed files with 0 additions and 38 deletions

38
Jenkinsfile vendored
View File

@ -20,43 +20,5 @@ pipeline {
}
}
}
/ * stage('PHP 7.1') {
agent {
node {
checkout scm
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
docker.image('redis:latest').withRun('-p 6379:6379') { d ->
docker.image('php:7.1') {
steps {
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'
}
}
}
}
}
}
}
stage('PHP 7.2') {
agent {
node {
checkout scm
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
docker.image('redis:latest').withRun('-p 6379:6379') { d ->
docker.image('php:7.2') {
steps {
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'
}
}
}
}
}
}
} */
}
}