Attempt to fix tests
Gitea - aviat/banker/pipeline/head There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2021-02-05 13:54:59 -05:00
parent 7379170ca8
commit fb08e5c787
1 changed files with 24 additions and 15 deletions

15
Jenkinsfile vendored
View File

@ -1,8 +1,9 @@
node {
checkout scm
docker.image('memcached:latest').withRun('-p 11212:11211') { c ->
docker.image('redis:latest').withRun('-p 6380:6379') { d ->
stage("php 7.4") {
docker.image('memcached:latest').withRun('-p 11212:11211').inside {
docker.image('redis:latest').withRun('-p 6380:6379').inside {
docker.image('php:7.4') {
checkout scm
steps {
sh 'sh build/docker_install.sh > /dev/null'
sh 'curl -sS https://getcomposer.org/installer | php'
@ -10,7 +11,14 @@ node {
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
}
}
}
}
}
stage("php 8") {
docker.image('memcached:latest').withRun('-p 11212:11211').inside {
docker.image('redis:latest').withRun('-p 6380:6379').inside {
docker.image('php:8') {
checkout scm
steps {
sh 'sh build/docker_install.sh > /dev/null'
sh 'curl -sS https://getcomposer.org/installer | php'
@ -20,4 +28,5 @@ node {
}
}
}
}
}