removes build_ in jenkins
This commit is contained in:
6
Jenkinsfile
vendored
6
Jenkinsfile
vendored
@@ -48,7 +48,7 @@ void make_hello(board) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void cmake_hello(board,build_type,core_type) {
|
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")
|
if (core_type=="32")
|
||||||
flavor ="${board}_${build_type}"
|
flavor ="${board}_${build_type}"
|
||||||
sh("cmake -B ${flavor} --preset=${flavor}")
|
sh("cmake -B ${flavor} --preset=${flavor}")
|
||||||
@@ -181,8 +181,8 @@ pipeline {
|
|||||||
|
|
||||||
stage("start to run hello FW on ISS") {
|
stage("start to run hello FW on ISS") {
|
||||||
steps {
|
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/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_64/hello.elf --isa=rv64gc'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user