Skip to content

Commit

Permalink
test: add missing }
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinab25 authored Aug 30, 2024
1 parent 11b6e85 commit ef0313a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ pipeline {
}
}
steps {
node(label: 'docker') {
node(label: 'docker') {
script {
try {
sh '''docker pull eeacms/plone-backend; docker run --rm -d --name="$BUILD_TAG-plone" -e SITE="Plone" -e PROFILES="eea.kitkat:testing" eeacms/plone-backend'''
Expand Down Expand Up @@ -60,13 +60,12 @@ pipeline {
sh script: "docker stop $BUILD_TAG-plone", returnStatus: true
sh script: "docker rm -v $BUILD_TAG-plone", returnStatus: true
sh script: "docker rm -v $BUILD_TAG-cypress", returnStatus: true

}
}
}
}
}

}

stage('Bundlewatch') {
when {
Expand All @@ -78,7 +77,7 @@ pipeline {
script {
checkout scm
env.NODEJS_HOME = "${tool 'NodeJS'}"
env.PATH="${env.NODEJS_HOME}/bin:${env.PATH}"
env.PATH="${env.NODEJS_HOME}/bin:${env.PATH}"
env.CI=false
sh "yarn"
sh "env"
Expand Down

0 comments on commit ef0313a

Please sign in to comment.