disables TCC in Jenkinsfile

This commit is contained in:
Eyck-Alexander Jentzsch 2024-05-22 18:04:13 +02:00
parent dc8e631824
commit 3b6f7b5e83
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -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'
}
}