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