enables ISS build in jenkins

This commit is contained in:
2025-07-25 13:45:21 +02:00
parent 0dafde8a4c
commit 74275ddab4

20
Jenkinsfile vendored
View File

@@ -167,9 +167,8 @@ pipeline {
steps { steps {
sh 'pwd' sh 'pwd'
sh 'ls' sh 'ls'
sh 'conan profile detect --force' sh 'rm -rf *@tmp'
sh 'rm -rf build' sh 'ls'
/*
sh ''' sh '''
for core in RV32GC; do for core in RV32GC; do
for backend in interp; do for backend in interp; do
@@ -183,25 +182,18 @@ pipeline {
done done
''' '''
sh 'conan profile detect --force' sh 'conan profile detect --force'
sh 'rm -rf build' sh 'rm -rf TGC-ISS/build'
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 'TGC-ISS/build/dbt-rise-tgc/tgc-sim --isa ?'
*/
} }
} }
stage("start to check") { stage("start to run FW with ISS") {
steps { steps {
sh 'pwd' sh 'pwd'
} }
} }
} }
/*
post {
failure {
sh("make -C hello-world/ clean")
}
}
*/
} }