From c068d6dbd315d464a8c9eadf7e381fa70a9c3f55 Mon Sep 17 00:00:00 2001 From: Hongyu Liu Date: Fri, 25 Jul 2025 16:08:40 +0200 Subject: [PATCH] removes build_ in jenkins --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9ae36a4..f3a1a46 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -48,7 +48,7 @@ void make_hello(board) { } void cmake_hello(board,build_type,core_type) { - def flavor ="build_${board}_${build_type}_${core_type}" + def flavor ="${board}_${build_type}_${core_type}" if (core_type=="32") flavor ="${board}_${build_type}" sh("cmake -B ${flavor} --preset=${flavor}") @@ -181,8 +181,8 @@ pipeline { stage("start to run hello FW on ISS") { steps { - sh 'TGC-ISS/build/dbt-rise-tgc/tgc-sim -f hello-world/build_ISS_Debug/hello.elf' - sh 'TGC-ISS/build/dbt-rise-tgc/tgc-sim -f hello-world/build_ISS_Debug_64/hello.elf --isa=rv64gc' + sh 'TGC-ISS/build/dbt-rise-tgc/tgc-sim -f hello-world/ISS_Debug/hello.elf' + sh 'TGC-ISS/build/dbt-rise-tgc/tgc-sim -f hello-world/ISS_Debug_64/hello.elf --isa=rv64gc' } } }