Attempt to run CI in stages
Some checks failed
Gitea - aviat/banker/pipeline/head There was a failure building this commit
Some checks failed
Gitea - aviat/banker/pipeline/head There was a failure building this commit
This commit is contained in:
parent
ebef8075b8
commit
1a4553cb4c
25
Jenkinsfile
vendored
25
Jenkinsfile
vendored
@ -11,27 +11,30 @@ pipeline {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test PHP 7.4") {
|
stage("Test PHP 7.4") {
|
||||||
docker.image("memcached:latest").withRun("-p 11212:11211") { c ->
|
steps {
|
||||||
docker.image("redis:latest").withRun("-p 6380:6379") { d ->
|
docker.image("memcached:latest").withRun("-p 11212:11211") { c ->
|
||||||
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("redis:latest").withRun("-p 6380:6379") { d ->
|
||||||
sh "sh build/docker_install.sh > /dev/null"
|
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 ->
|
||||||
sh "php ./vendor/bin/phpunit -c build --no-coverage --colors=never"
|
sh "sh build/docker_install.sh"
|
||||||
|
sh "php ./vendor/bin/phpunit -c build --no-coverage --colors=never"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Test PHP 8") {
|
stage("Test PHP 8") {
|
||||||
docker.image("memcached:latest").withRun("-p 11212:11211") { c ->
|
steps {
|
||||||
docker.image("redis:latest").withRun("-p 6380:6379") { d ->
|
docker.image("memcached:latest").withRun("-p 11212:11211") { c ->
|
||||||
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("redis:latest").withRun("-p 6380:6379") { d ->
|
||||||
sh "sh build/docker_install.sh > /dev/null"
|
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 ->
|
||||||
sh "php ./vendor/bin/phpunit -c build --no-coverage --colors=never"
|
sh "sh build/docker_install.sh"
|
||||||
|
sh "php ./vendor/bin/phpunit -c build --no-coverage --colors=never"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
stage("Coverage") {
|
stage("Coverage") {
|
||||||
agent any
|
|
||||||
steps {
|
steps {
|
||||||
sh 'php composer.phar run-script coverage'
|
sh 'php composer.phar run-script coverage'
|
||||||
step([
|
step([
|
||||||
|
@ -5,12 +5,6 @@
|
|||||||
|
|
||||||
set -xe
|
set -xe
|
||||||
|
|
||||||
# Install git (the php image doesn't have it) which is required by composer
|
|
||||||
#echo -e 'http://dl-cdn.alpinelinux.org/alpine/edge/main\nhttp://dl-cdn.alpinelinux.org/alpine/edge/community\nhttp://dl-cdn.alpinelinux.org/alpine/edge/testing' > /etc/apk/repositories
|
|
||||||
#apk upgrade --update --no-cache \
|
|
||||||
# curl \
|
|
||||||
# git
|
|
||||||
|
|
||||||
apt-get update && apt-get install -y \
|
apt-get update && apt-get install -y \
|
||||||
libz-dev \
|
libz-dev \
|
||||||
libmemcached-dev \
|
libmemcached-dev \
|
||||||
|
Loading…
Reference in New Issue
Block a user