Skip to content

Commit 56c6639

Browse files
Merge pull request #157 from shosseinimotlagh/change_jenkins
Add sleep time for jenkins failure and machine info
2 parents 41603ac + d33b5fc commit 56c6639

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.jenkins/Jenkinsfile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,16 @@ pipeline {
5050

5151
stage("Compile") {
5252
steps {
53-
sh "conan build -s:h compiler.cppstd=23 ${BUILD_MISSING} -s:h build_type=Debug -o ${PROJECT}/*:sanitize=True ${CONAN_FLAGS} . ; \
53+
sh "hostname ; \
54+
echo $NODE_NAME ; \
55+
conan build -s:h compiler.cppstd=23 ${BUILD_MISSING} -s:h build_type=Debug -o ${PROJECT}/*:sanitize=True ${CONAN_FLAGS} . ; \
5456
conan create -s:h compiler.cppstd=23 ${BUILD_MISSING} -s:h build_type=Debug ${CONAN_FLAGS} . ; \
5557
conan create -s:h compiler.cppstd=23 ${BUILD_MISSING} -s:h build_type=RelWithDebInfo -o sisl/*:malloc_impl=tcmalloc ${CONAN_FLAGS} . ; \
5658
"
5759
}
60+
post {
61+
failure { script { sleep 3600000 } }
62+
}
5863
}
5964

6065
stage("Deploy") {

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class HomeBlocksConan(ConanFile):
1111
name = "homeblocks"
12-
version = "5.0.5"
12+
version = "5.0.6"
1313

1414
homepage = "https://github.com/eBay/HomeBlocks"
1515
description = "Block Store built on HomeStore"

0 commit comments

Comments
 (0)