Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
1 changed files with 6 additions and 6 deletions
Showing only changes of commit acd507d7f2 - Show all commits

12
Jenkinsfile vendored
View File

@ -7,12 +7,12 @@ pipeline {
image 'php-alpine' image 'php-alpine'
args '-u root --privileged' args '-u root --privileged'
} }
steps { }
sh 'apk add --no-cache git' steps {
sh 'curl -sS https://getcomposer.org/installer | php' sh 'apk add --no-cache git'
sh 'rm -f composer.lock' sh 'curl -sS https://getcomposer.org/installer | php'
sh 'php composer.phar install --ignore-platform-reqs' sh 'rm -f composer.lock'
} sh 'php composer.phar install --ignore-platform-reqs'
} }
} }
stage('PHP 7.3') { stage('PHP 7.3') {