From e39264632f19900bed2be50bd865d7e6e68c3321 Mon Sep 17 00:00:00 2001 From: Hongyu Liu Date: Fri, 4 Jul 2025 19:57:52 +0200 Subject: [PATCH] updates for TGC-ISS in Jenkinfile --- Jenkinsfile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 87af272..a1cf0fe 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -148,11 +148,15 @@ pipeline { dir("TGC-GEN"){ checkout_iss_project("https://git.minres.com/TGFS/TGC-GEN.git", "develop") } - sh 'pwd' + } } stage("Generate cores and build TGC-ISS"){ steps { + sh 'pwd' + sh 'conan profile detect --force' + sh 'rm -rf build' + /* sh ''' for core in RV32GC; do for backend in interp; do @@ -170,6 +174,7 @@ pipeline { sh 'cmake -S . -B build --preset Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=OFF' sh 'cmake --build build -j' sh 'build/dbt-rise-tgc/tgc-sim --isa ?' + */ } } }