-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #685 from lukemartinlogan/master
Add libelf to hermes CI and add try-catch around paths
- Loading branch information
Showing
14 changed files
with
313 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,6 @@ class HermesShm(CMakePackage): | |
homepage = "https://github.com/lukemartinlogan/hermes_shm/wiki" | ||
git = "https://github.com/lukemartinlogan/hermes_shm.git" | ||
version('master', branch='master') | ||
version("1.1.0", sha256="080d5361cff22794b670e4544c532926ca8b6d6ec695af25596efe035bfffea5") | ||
version("1.0.0", sha256="a79f01d531ce89985ad59a2f62b41d74c2385e48d929e2f4ad895ae34137573b") | ||
|
||
# Main variants | ||
variant('debug', default=False, description='Build shared libraries') | ||
|
@@ -21,6 +19,7 @@ class HermesShm(CMakePackage): | |
depends_on('[email protected]') | ||
depends_on('yaml-cpp') | ||
depends_on('[email protected]') | ||
depends_on('libelf') | ||
|
||
# Machine variants | ||
variant('ares', default=False, description='Build in ares') | ||
|
@@ -30,7 +29,7 @@ class HermesShm(CMakePackage): | |
# Main dependencies | ||
depends_on('[email protected]', when='+mochi') | ||
depends_on('cereal', when='+cereal') | ||
depends_on('[email protected]: +context +fiber', when='+boost') | ||
depends_on('[email protected]: +context +fiber +coroutine +regex +system +filesystem +serialization +pic +math', when='+boost') | ||
depends_on('mpi', when='+mpiio') | ||
depends_on('[email protected]', when='+vfd') | ||
depends_on('libzmq', '+zmq') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
stop_daemon: false | ||
path_inclusions: ["/tmp/test_hermes"] | ||
path_exclusions: ["/"] | ||
path_inclusions: ["/tmp/test_hermes/*"] | ||
path_exclusions: ["/*"] | ||
file_page_size: 1024KB | ||
base_adapter_mode: kDefault | ||
flushing_mode: kAsync | ||
file_adapter_configs: | ||
- path: "/" | ||
- path: "/*" | ||
page_size: 1MB | ||
mode: kDefault |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.