Timothy J. Warren
52c125d249
Some checks reported errors
Gitea - aviat/banker/pipeline/head Something is wrong with the build of this commit
19 lines
738 B
Groovy
19 lines
738 B
Groovy
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").withRun("") { p ->
|
|
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").withRun("") { p ->
|
|
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"
|
|
}
|
|
}
|
|
}
|
|
} |