Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
Showing only changes of commit cc0e03b573 - Show all commits

4
Jenkinsfile vendored
View File

@ -4,7 +4,6 @@ pipeline {
stage('setup') { stage('setup') {
agent any agent any
steps { steps {
sh 'apk add --no-cache git'
sh 'curl -sS https://getcomposer.org/installer | php' sh 'curl -sS https://getcomposer.org/installer | php'
sh 'rm -f composer.lock' sh 'rm -f composer.lock'
sh 'php composer.phar install --ignore-platform-reqs' sh 'php composer.phar install --ignore-platform-reqs'
@ -18,6 +17,7 @@ pipeline {
} }
} }
steps { steps {
sh 'apk add --no-cache git'
sh 'php ./vendor/bin/phpunit --colors=never' sh 'php ./vendor/bin/phpunit --colors=never'
} }
} }
@ -29,6 +29,7 @@ pipeline {
} }
} }
steps { steps {
sh 'apk add --no-cache git'
sh 'php ./vendor/bin/phpunit --colors=never' sh 'php ./vendor/bin/phpunit --colors=never'
} }
} }
@ -40,6 +41,7 @@ pipeline {
} }
} }
steps { steps {
sh 'apk add --no-cache git'
sh 'php ./vendor/bin/phpunit --colors=never' sh 'php ./vendor/bin/phpunit --colors=never'
} }
} }