removes build_ in jenkins

This commit is contained in:
2025-07-25 16:08:40 +02:00
parent 578857997e
commit c068d6dbd3

6
Jenkinsfile vendored
View File

@@ -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'
}
}
}