The correct syntax helps for working CI

This commit is contained in:
Timothy Warren 2020-03-12 10:26:00 -04:00
parent 622b435337
commit 3ce928a67d
1 changed files with 6 additions and 6 deletions

12
Jenkinsfile vendored
View File

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