disables TCC in CI
This commit is contained in:
parent
d0a24e9946
commit
993324f130
|
@ -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)
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue