updates Jenkinsfile to use conan2 as build tool

This commit is contained in:
Eyck-Alexander Jentzsch 2025-04-28 16:14:31 +02:00
parent 6a3e32ac50
commit 565958c631

2
Jenkinsfile vendored
View File

@ -49,7 +49,7 @@ pipeline {
'''
sh 'conan profile new default --detect --force'
sh 'rm -rf build'
sh 'cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=ON'
sh 'cmake -S . -B build --preset Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=ON'
sh 'cmake --build build -j'
sh 'build/dbt-rise-tgc/tgc-sim --isa ?'
}