From 3b6f7b5e83f0b74921c2ec8d173b95d07af9b6d5 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Wed, 22 May 2024 18:04:13 +0200 Subject: [PATCH] disables TCC in Jenkinsfile --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index e718d8b..5acf522 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -31,7 +31,7 @@ pipeline { stage("build TGC-ISS"){ steps { sh 'conan profile new default --detect --force ' - sh 'cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DWITH_ASMJIT=ON -DWITH_TCC=ON -DWITH_LLVM=ON' + sh 'cmake -S . -B build -DCMAKE_BUILD_TYPE=Release -DWITH_ASMJIT=ON -DWITH_TCC=OFF -DWITH_LLVM=ON' sh 'cmake --build build -j' } }