banker/Jenkinsfile

20 lines
1.0 KiB
Plaintext
Raw Normal View History

2018-10-12 10:53:48 -04:00
node {
2021-02-05 14:58:26 -05:00
docker.image("memcached:latest").withRun("-p 11212:11211") { c ->
docker.image("redis:latest").withRun("-p 6380:6379") { d ->
2021-02-05 15:23:49 -05:00
docker.image("php:7.4").withRun("-e REDIS_HOST=redis -e REDIS_PORT=11212 -e MEMCACHED_HOST=mem -e MEMCACHED_PORT=6380 --link ${d.id}:redis --link ${c.id}:mem") { p ->
2021-02-05 15:31:59 -05:00
checkout scm
2021-02-05 15:05:07 -05:00
sh "sh build/docker_install.sh > /dev/null"
sh "curl -sS https://getcomposer.org/installer | php"
sh "php composer.phar install --ignore-platform-reqs"
2021-02-05 15:42:20 -05:00
sh "phpdbg -qrr -- ./vendor/bin/phpunit -c build --coverage-text --colors=never"
2021-02-05 13:47:37 -05:00
}
2021-02-05 15:23:49 -05:00
docker.image("php:8").withRun("-e REDIS_HOST=redis -e REDIS_PORT=11212 -e MEMCACHED_HOST=mem -e MEMCACHED_PORT=6380 --link ${d.id}:redis --link ${c.id}:mem") { p ->
2021-02-05 15:31:59 -05:00
checkout scm
2021-02-05 15:05:07 -05:00
sh "sh build/docker_install.sh > /dev/null"
sh "curl -sS https://getcomposer.org/installer | php"
sh "php composer.phar install --ignore-platform-reqs"
2021-02-05 15:42:20 -05:00
sh "phpdbg -qrr -- ./vendor/bin/phpunit -c build --coverage-text --colors=never"
2018-10-12 08:44:24 -04:00
}
}
}
2021-02-05 14:57:22 -05:00
}