adds switch to mkdir

This commit is contained in:
Eyck-Alexander Jentzsch 2024-07-11 12:59:43 +02:00
parent c4a746d4c8
commit c0e557316f
1 changed files with 2 additions and 2 deletions

4
Jenkinsfile vendored
View File

@ -77,7 +77,7 @@ pipeline {
stages { stages {
stage('Run riscof') { stage('Run riscof') {
steps { steps {
sh "mkdir ${BACKEND}" sh "mkdir -p ${BACKEND}"
sh "python3 TGC-COMPLIANCE/run_act.py -core ${CORE} -sim build/dbt-rise-tgc/tgc-sim -w ${BACKEND} --local --backend ${BACKEND}" sh "python3 TGC-COMPLIANCE/run_act.py -core ${CORE} -sim build/dbt-rise-tgc/tgc-sim -w ${BACKEND} --local --backend ${BACKEND}"
} }
} }
@ -99,7 +99,7 @@ pipeline {
stages { stages {
stage('Run riscof') { stage('Run riscof') {
steps { steps {
sh "mkdir ${BACKEND}" sh "mkdir -p ${BACKEND}"
sh "python3 TGC-COMPLIANCE/run_act.py -core ${CORE} -sim build/dbt-rise-tgc/tgc-sim -w ${BACKEND} --local --backend ${BACKEND}" sh "python3 TGC-COMPLIANCE/run_act.py -core ${CORE} -sim build/dbt-rise-tgc/tgc-sim -w ${BACKEND} --local --backend ${BACKEND}"
} }
} }