From 3ce928a67d17edfc5fcf596efb0853b38c4d0e4e Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Thu, 12 Mar 2020 10:26:00 -0400 Subject: [PATCH] The correct syntax helps for working CI --- Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c99a758f..a12c36e3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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') {