From 565958c6317be2a850852598dda2b00d97962338 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Mon, 28 Apr 2025 16:14:31 +0200 Subject: [PATCH] updates Jenkinsfile to use conan2 as build tool --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 99e1f8f..74b591b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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 ?' }