updates for TGC-ISS in Jenkinfile

This commit is contained in:
2025-07-04 19:57:52 +02:00
parent 630f9993d6
commit e39264632f

7
Jenkinsfile vendored
View File

@ -148,11 +148,15 @@ pipeline {
dir("TGC-GEN"){ dir("TGC-GEN"){
checkout_iss_project("https://git.minres.com/TGFS/TGC-GEN.git", "develop") checkout_iss_project("https://git.minres.com/TGFS/TGC-GEN.git", "develop")
} }
sh 'pwd'
} }
} }
stage("Generate cores and build TGC-ISS"){ stage("Generate cores and build TGC-ISS"){
steps { steps {
sh 'pwd'
sh 'conan profile detect --force'
sh 'rm -rf build'
/*
sh ''' sh '''
for core in RV32GC; do for core in RV32GC; do
for backend in interp; 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 -S . -B build --preset Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=OFF'
sh 'cmake --build build -j' sh 'cmake --build build -j'
sh 'build/dbt-rise-tgc/tgc-sim --isa ?' sh 'build/dbt-rise-tgc/tgc-sim --isa ?'
*/
} }
} }
} }