Skip to content

Commit

Permalink
Merge pull request #49 from raakella1/sisl_update
Browse files Browse the repository at this point in the history
unconditionally include build missing option
  • Loading branch information
raakella1 authored Aug 30, 2023
2 parents 75dfdf7 + e143f16 commit b43ed01
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
9 changes: 2 additions & 7 deletions .jenkins/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,14 @@ pipeline {
steps {
script {
sh(script: "sed -Ei 's,version = .*\"([[:digit:]]+\\.[[:digit:]]+\\.[[:digit:]]+).*,version = \"\\1-${env.BUILD_NUMBER}\",' conanfile.py")
BUILD_MISSING = "--build missing"
LAST_COMMITS = sh(script: "git log -n 2 --pretty=short", returnStdout: true)
}
}
}
stage('Adjust for Testing/Stable') {
when { anyOf {
branch "${TESTING_BRANCH}"
branch "${STABLE_BRANCH}"
} }
stage('Include build missing') {
steps {
script {
BUILD_MISSING = ""
BUILD_MISSING = "--build missing"
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class IOMgrConan(ConanFile):
name = "iomgr"
version = "8.7.4"
version = "8.7.5"
homepage = "https://github.com/eBay/IOManager"
description = "Asynchronous event manager"
topics = ("ebay", "nublox", "aio")
Expand Down Expand Up @@ -58,11 +58,11 @@ def requirements(self):
self.requires("spdk/21.07.y")
self.requires("pistache/0.0.5")
self.requires("zmarok-semver/1.1.0")
self.requires("libcurl/7.86.0")

self.requires("flatbuffers/1.12.0", override=True)
self.requires("openssl/1.1.1q", override=True)
self.requires("zlib/1.2.12", override=True)
self.requires("libcurl/7.80.0", override=True)

def build(self):
cmake = CMake(self)
Expand Down

0 comments on commit b43ed01

Please sign in to comment.