Attempt to fix build
Some checks failed
Gitea - aviat/banker/pipeline/head There was a failure building this commit

This commit is contained in:
Timothy Warren 2021-02-05 15:31:59 -05:00
parent 2cd44f4645
commit b87a92296d

3
Jenkinsfile vendored
View File

@ -1,14 +1,15 @@
node { node {
checkout scm
docker.image("memcached:latest").withRun("-p 11212:11211") { c -> docker.image("memcached:latest").withRun("-p 11212:11211") { c ->
docker.image("redis:latest").withRun("-p 6380:6379") { d -> docker.image("redis:latest").withRun("-p 6380:6379") { d ->
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 -> 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 ->
checkout scm
sh "sh build/docker_install.sh > /dev/null" sh "sh build/docker_install.sh > /dev/null"
sh "curl -sS https://getcomposer.org/installer | php" sh "curl -sS https://getcomposer.org/installer | php"
sh "php composer.phar install --ignore-platform-reqs" sh "php composer.phar install --ignore-platform-reqs"
sh "phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never" sh "phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never"
} }
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 -> 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 ->
checkout scm
sh "sh build/docker_install.sh > /dev/null" sh "sh build/docker_install.sh > /dev/null"
sh "curl -sS https://getcomposer.org/installer | php" sh "curl -sS https://getcomposer.org/installer | php"
sh "php composer.phar install --ignore-platform-reqs" sh "php composer.phar install --ignore-platform-reqs"