diff --git a/.jenkins/Jenkinsfile b/.jenkins/Jenkinsfile index 638b76d..d6143dd 100644 --- a/.jenkins/Jenkinsfile +++ b/.jenkins/Jenkinsfile @@ -50,11 +50,16 @@ pipeline { stage("Compile") { steps { - sh "conan build -s:h compiler.cppstd=23 ${BUILD_MISSING} -s:h build_type=Debug -o ${PROJECT}/*:sanitize=True ${CONAN_FLAGS} . ; \ + sh "hostname ; \ + echo $NODE_NAME ; \ + conan build -s:h compiler.cppstd=23 ${BUILD_MISSING} -s:h build_type=Debug -o ${PROJECT}/*:sanitize=True ${CONAN_FLAGS} . ; \ conan create -s:h compiler.cppstd=23 ${BUILD_MISSING} -s:h build_type=Debug ${CONAN_FLAGS} . ; \ conan create -s:h compiler.cppstd=23 ${BUILD_MISSING} -s:h build_type=RelWithDebInfo -o sisl/*:malloc_impl=tcmalloc ${CONAN_FLAGS} . ; \ " } + post { + failure { script { sleep 3600000 } } + } } stage("Deploy") { diff --git a/conanfile.py b/conanfile.py index 20fabff..46388ec 100644 --- a/conanfile.py +++ b/conanfile.py @@ -9,7 +9,7 @@ class HomeBlocksConan(ConanFile): name = "homeblocks" - version = "5.0.5" + version = "5.0.6" homepage = "https://github.com/eBay/HomeBlocks" description = "Block Store built on HomeStore"