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

This commit is contained in:
Timothy Warren 2021-02-05 15:03:19 -05:00
parent 44ace2d143
commit 2f75279113
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

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