banker/Jenkinsfile
Timothy J. Warren afac369573
Some checks failed
Gitea - aviat/banker/pipeline/head There was a failure building this commit
Attempt to fix tests
2021-02-05 14:57:22 -05:00

23 lines
748 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') {
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'
}
}
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'
}
}
}
}
}