Timothy J. Warren
fb08e5c787
Some checks failed
Gitea - aviat/banker/pipeline/head There was a failure building this commit
33 lines
983 B
Groovy
33 lines
983 B
Groovy
node {
|
|
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'
|
|
sh 'php composer.phar install --ignore-platform-reqs'
|
|
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'
|
|
sh 'php composer.phar install --ignore-platform-reqs'
|
|
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|