From 925e3126082aded7c6ed508bd7637dc5aff4f609 Mon Sep 17 00:00:00 2001 From: Hongyu Liu Date: Fri, 25 Jul 2025 14:15:10 +0200 Subject: [PATCH] adds TGC-ISS prefix in jenkins --- Jenkinsfile | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2c4342f..a6ed173 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -168,23 +168,29 @@ pipeline { sh 'pwd' sh 'ls' sh 'rm -rf *@tmp' - sh 'ls' + sh 'ls' + sh 'ls TGC-ISS' + sh 'ls TGC-ISS/TGC-GEN' + sh 'ls TGC-ISS/TGC-GEN' + + sh 'ls TGC-GEN' + sh 'ls TGC-GEN' sh ''' for core in RV32GC; do for backend in interp; do - TGC-GEN/scripts/generate_iss.sh -o dbt-rise-tgc/ -c $core -b ${backend} TGC-GEN/CoreDSL/${core}.core_desc + TGC-ISS/TGC-GEN/scripts/generate_iss.sh -o dbt-rise-tgc/ -c $core -b ${backend} TGC-ISS/TGC-GEN/CoreDSL/${core}.core_desc done done for core in RV64GC; do for backend in interp; do - TGC-GEN/scripts/generate_iss.sh -o dbt-rise-tgc/ -c $core -b ${backend} TGC-GEN/CoreDSL/${core}.core_desc + TGC-ISS/TGC-GEN/scripts/generate_iss.sh -o dbt-rise-tgc/ -c $core -b ${backend} TGC-ISS/TGC-GEN/CoreDSL/${core}.core_desc done done ''' sh 'conan profile detect --force' sh 'rm -rf TGC-ISS/build' - sh 'cmake -S . -B build --preset Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=OFF' - sh 'cmake --build build -j' + sh 'cmake -S TGC-ISS/. -B TGC-ISS/build --preset Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=OFF' + sh 'cmake --build TGC-ISS/build -j' sh 'TGC-ISS/build/dbt-rise-tgc/tgc-sim --isa ?' } }