Jenkins CI setup, try two
Gitea - aviat/banker/master There was a failure building this commit Details

This commit is contained in:
Timothy Warren 2018-10-12 08:45:39 -04:00
parent 78e6acf821
commit 028e20bacc
1 changed files with 3 additions and 3 deletions

6
Jenkinsfile vendored
View File

@ -5,7 +5,7 @@ pipeline {
node {
checkout scm
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
docker.image('redis:latest').withRun('-p 6379:6379') { c ->
docker.image('redis:latest').withRun('-p 6379:6379') { d ->
docker.image('php:7') {
sh 'sh build/docker_install.sh > /dev/null'
sh 'curl -sS https://getcomposer.org/installer | php'
@ -20,7 +20,7 @@ pipeline {
node {
checkout scm
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
docker.image('redis:latest').withRun('-p 6379:6379') { c ->
docker.image('redis:latest').withRun('-p 6379:6379') { d ->
docker.image('php:7.1') {
sh 'sh build/docker_install.sh > /dev/null'
sh 'curl -sS https://getcomposer.org/installer | php'
@ -35,7 +35,7 @@ pipeline {
node {
checkout scm
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
docker.image('redis:latest').withRun('-p 6379:6379') { c ->
docker.image('redis:latest').withRun('-p 6379:6379') { d ->
docker.image('php:7.2') {
sh 'sh build/docker_install.sh > /dev/null'
sh 'curl -sS https://getcomposer.org/installer | php'