Jenkins CI setup, try five
Some checks failed
Gitea - aviat/banker/master There was a failure building this commit
Some checks failed
Gitea - aviat/banker/master There was a failure building this commit
This commit is contained in:
parent
8368c91ff4
commit
c904792681
15
Jenkinsfile
vendored
15
Jenkinsfile
vendored
@ -3,9 +3,12 @@ pipeline {
|
||||
stages {
|
||||
stage('PHP 7') {
|
||||
agent {
|
||||
node {
|
||||
checkout scm
|
||||
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
|
||||
docker.image('redis:latest').withRun('-p 6379:6379') { d ->
|
||||
docker.image('php:7') {
|
||||
steps {
|
||||
sh 'sh build/docker_install.sh > /dev/null'
|
||||
sh 'curl -sS https://getcomposer.org/installer | php'
|
||||
sh 'php composer.phar install --ignore-platform-reqs'
|
||||
@ -15,11 +18,16 @@ pipeline {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('PHP 7.1') {
|
||||
agent {
|
||||
node {
|
||||
checkout scm
|
||||
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
|
||||
docker.image('redis:latest').withRun('-p 6379:6379') { d ->
|
||||
docker.image('php:7.1') {
|
||||
steps {
|
||||
sh 'sh build/docker_install.sh > /dev/null'
|
||||
sh 'curl -sS https://getcomposer.org/installer | php'
|
||||
sh 'php composer.phar install --ignore-platform-reqs'
|
||||
@ -29,11 +37,16 @@ pipeline {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('PHP 7.2') {
|
||||
agent {
|
||||
node {
|
||||
checkout scm
|
||||
docker.image('memcached:latest').withRun('-p 11211:11211') { c ->
|
||||
docker.image('redis:latest').withRun('-p 6379:6379') { d ->
|
||||
docker.image('php:7.2') {
|
||||
steps {
|
||||
sh 'sh build/docker_install.sh > /dev/null'
|
||||
sh 'curl -sS https://getcomposer.org/installer | php'
|
||||
sh 'php composer.phar install --ignore-platform-reqs'
|
||||
@ -45,3 +58,5 @@ pipeline {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user