disables TCC in CI

This commit is contained in:
Eyck Jentzsch 2023-12-02 10:36:54 +01:00
parent d0a24e9946
commit 993324f130
2 changed files with 8 additions and 6 deletions

View File

@ -80,7 +80,10 @@ set(CONAN_PACKAGE_LIST
)
set(CONAN_PACKAGE_OPTIONS fmt:header_only=True ${CONAN_BOOST_OPTIONS})
if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux" AND WITH_TCC)
list(APPEND CONAN_PACKAGE_LIST seasocks/1.4.4 tcc/0.9.27)
list(APPEND CONAN_PACKAGE_LIST seasocks/1.4.4)
if(WITH_TCC)
list(APPEND CONAN_PACKAGE_LIST tcc/0.9.27)
endif()
list(APPEND CONAN_PACKAGE_OPTIONS lua:compile_as_cpp=False )
endif()
if(WITH_LLVM)

9
Jenkinsfile vendored
View File

@ -39,11 +39,10 @@ void build_tgc_vp() {
catch (exc) {
echo 'Conan configured'
}
sh("rm -rf TGC-VP/build")
sh("mkdir -p TGC-VP/build")
sh("cd TGC-VP && git submodule update --recursive")
sh("cmake -S . -B build && cmake --build build -j16")
fingerprint 'TGC-VP/build/src/tgc-vp'
sh("rm -rf build")
sh("git submodule update --recursive")
sh("cmake -S . -B build -DWITH_TCC=OFF && cmake --build build -j16")
fingerprint 'build/src/tgc-vp'
}
pipeline {