Attempt to run CI in stages
Gitea - aviat/banker/pipeline/head This commit looks good Details

This commit is contained in:
Timothy Warren 2021-02-05 16:29:27 -05:00
parent 1fe72c7212
commit 354912a6c9
1 changed files with 10 additions and 12 deletions

22
Jenkinsfile vendored
View File

@ -12,7 +12,7 @@ pipeline {
} }
stage("Test PHP 7.4") { stage("Test PHP 7.4") {
steps { steps {
node { script {
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 ->
@ -26,7 +26,7 @@ pipeline {
} }
stage("Test PHP 8") { stage("Test PHP 8") {
steps { steps {
node { script {
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: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 ->
@ -38,16 +38,14 @@ pipeline {
} }
} }
} }
post { stage("Coverage") {
success { steps {
steps { sh 'php composer.phar run-script coverage'
sh 'php composer.phar run-script coverage' step([
step([ $class: 'CloverPublisher',
$class: 'CloverPublisher', cloverReportDir: '',
cloverReportDir: '', cloverReportFileName: 'build/logs/clover.xml',
cloverReportFileName: 'build/logs/clover.xml', ])
])
}
} }
} }
} }