Skip to content

Commit

Permalink
Fix CI test step invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
cbdevnet committed Jun 30, 2021
1 parent 5bd2e80 commit f16f7db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions assets/ci-config
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ builds.Test = {
sh label: "Analyze Complexity", script: './assets/ci.sh --target=analyze-complexity'
}
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh label: "Analyze Shellscripts", script: './assets/ci.sh--target=analyze-shellscript'
sh label: "Analyze Shellscripts", script: './assets/ci.sh --target=analyze-shellscript'
}
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh label: "Code Statistics", script: '../assets/ci.sh --target=stats'
sh label: "Code Statistics", script: './assets/ci.sh --target=stats'
}
}
}
}

parallel builds
deploy.call()
deploy.call()

0 comments on commit f16f7db

Please sign in to comment.