banker/Jenkinsfile

33 lines
983 B
Plaintext
Raw Normal View History

2018-10-12 10:53:48 -04:00
node {
2021-02-05 13:54:59 -05:00
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'
}
2021-02-05 13:47:37 -05:00
}
}
2021-02-05 13:54:59 -05:00
}
}
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'
}
2018-10-12 08:44:24 -04:00
}
}
}
}
2018-10-12 10:53:48 -04:00
}