Skip to content

Commit

Permalink
Fix jenkins nightly project (#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
shosseinimotlagh authored Aug 6, 2024
1 parent 6806e5a commit b408d40
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .jenkins/jenkinsfile_nightly
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pipeline {
steps {
script {
PROJECT = sh(script: "grep -m 1 'name =' conanfile.py | awk '{print \$3}' | tr -d '\n' | tr -d '\"'", returnStdout: true)
VER = sh(script: "grep -m 1 'version =' conanfile.py | awk '{print \$3}' | tr -d '\n' | tr -d '\"'", returnStdout: true)
VER = sh(script: "grep -m 1 ' version =' conanfile.py | awk '{print \$3}' | tr -d '\n' | tr -d '\"'", returnStdout: true)
NIGHTLY_TAG = "master-nightly-debug-4.0"
ECR_PATH = "${ECR_URL}/${ORG}/${PROJECT}"
failed_stage = ""
Expand All @@ -40,7 +40,7 @@ pipeline {
}
stage("Build") {
steps {
sh "conan create --build missing -o homestore:sanitize=True -o homestore:skip_testing=True -pr debug . ${PROJECT}/${VER}@"
sh "conan create --build missing -o homestore:sanitize=True -o iomgr:testing=off -c tools.build:skip_test=True -pr debug . ${PROJECT}/${VER}@"
sh "find ${CONAN_USER_HOME} -type f -wholename '*bin/test_index_btree' -exec cp {} .jenkins/test_index_btree \\;"
sh "find ${CONAN_USER_HOME} -type f -wholename '*bin/test_meta_blk_mgr' -exec cp {} .jenkins/test_meta_blk_mgr \\;"
sh "find ${CONAN_USER_HOME} -type f -wholename '*bin/test_log_store' -exec cp {} .jenkins/test_log_store \\;"
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class HomestoreConan(ConanFile):
name = "homestore"
version = "6.4.36"
version = "6.4.37"

homepage = "https://github.com/eBay/Homestore"
description = "HomeStore Storage Engine"
Expand Down

0 comments on commit b408d40

Please sign in to comment.