Attempt to fix tests
Some checks failed
Gitea - aviat/banker/pipeline/head There was a failure building this commit
Some checks failed
Gitea - aviat/banker/pipeline/head There was a failure building this commit
This commit is contained in:
parent
afac369573
commit
44ace2d143
24
Jenkinsfile
vendored
24
Jenkinsfile
vendored
@ -1,21 +1,21 @@
|
||||
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("memcached:latest").withRun("-p 11212:11211") { c ->
|
||||
docker.image("redis:latest").withRun("-p 6380:6379") { d ->
|
||||
docker.image("php:7.4") {
|
||||
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'
|
||||
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"
|
||||
}
|
||||
}
|
||||
docker.image('php:8') {
|
||||
docker.image("php:8") {
|
||||
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'
|
||||
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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user