Skip to content

Commit

Permalink
Merge pull request #517 from lukemartinlogan/master
Browse files Browse the repository at this point in the history
Update readme
  • Loading branch information
lukemartinlogan committed May 1, 2023
2 parents 1f21769 + 20bca84 commit 7bff53a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,14 @@ After successfully building Hermes, it's a good idea to run the test suite via t

Finally, install the library with `make install`. You can find a complete example build script [here](https://github.com/HDFGroup/hermes/blob/master/ci/install_hermes.sh).

Before running ctests, you must install jarvis-util, which is used to execute
the tests.
```
cd $HERMES_ROOT/ci/jarvis-util
python3 -m pip install -r requirements.txt
python3 -m pip install -e .
```

## Contributing

We follow the [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html). You can run `make lint` to ensure that your code conforms to the style. This requires the `cpplint` Python module (`pip install cpplint`). Alternatively, you can let the CI build inform you of required style changes.
3 changes: 3 additions & 0 deletions ci/hermes/packages/hermes/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ class Hermes(CMakePackage):
depends_on('mpich@3.3.2:')
depends_on('yaml-cpp')
depends_on('boost@1.7:')
depends_on('python3')
# TODO(): we need to figure out how to add a python library as a dependency
# depends_on('jarvis-util')
depends_on('libfabric@1.14.1 fabrics=mlx,rxd,rxm,shm,sockets,tcp,udp,verbs,xpmem',
when='+ares')
depends_on('hdf5@1.13.0:', when='+vfd')
Expand Down

0 comments on commit 7bff53a

Please sign in to comment.