diff options
author | cbdev <cb@cbcdn.com> | 2021-06-30 02:53:23 +0200 |
---|---|---|
committer | cbdev <cb@cbcdn.com> | 2021-06-30 02:53:23 +0200 |
commit | f16f7db86662fcdbf45b6373257c90c824b0b4b0 (patch) | |
tree | 1a1a06986278221b3aabc6d8bf3eea5779adaa89 | |
parent | 5bd2e806cf9493681d948615cdeacb0cd3f07524 (diff) | |
download | midimonster-9319525b39c50556c5ba01f1838e85ab7b9fdcfa.tar.gz midimonster-9319525b39c50556c5ba01f1838e85ab7b9fdcfa.tar.bz2 midimonster-9319525b39c50556c5ba01f1838e85ab7b9fdcfa.zip |
Fix CI test step invocationv0.6
-rw-r--r-- | assets/ci-config | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/assets/ci-config b/assets/ci-config index 5e8df68..ac94661 100644 --- a/assets/ci-config +++ b/assets/ci-config @@ -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()
\ No newline at end of file +deploy.call() |