Skip to content

Commit

Permalink
Merge pull request #623 from lukemartinlogan/master
Browse files Browse the repository at this point in the history
Remove docker for now. Update readme.
  • Loading branch information
lukemartinlogan authored Oct 16, 2023
2 parents d38d46d + fb8b4ea commit 6450085
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 26 deletions.
52 changes: 26 additions & 26 deletions .github/workflows/build_and_push_docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,29 +19,29 @@ jobs:
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push deps.Dockerfile
uses: docker/build-push-action@v4
with:
context: ./
file: ./docker/deps.Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: hdfgroup/hermes-deps:latest
- name: Build and push dev.Dockerfile
uses: docker/build-push-action@v4
with:
context: ./
file: ./docker/dev.Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: hdfgroup/hermes-dev:latest
- name: Build and push user.Dockerfile
uses: docker/build-push-action@v4
with:
context: ./
file: ./docker/user.Dockerfile
builder: ${{ steps.buildx.outputs.name }}
push: true
tags: hdfgroup/hermes:latest
# - name: Set up Docker Buildx
# uses: docker/setup-buildx-action@v2
# - name: Build and push deps.Dockerfile
# uses: docker/build-push-action@v4
# with:
# context: ./
# file: ./docker/deps.Dockerfile
# builder: ${{ steps.buildx.outputs.name }}
# push: true
# tags: hdfgroup/hermes-deps:latest
# - name: Build and push dev.Dockerfile
# uses: docker/build-push-action@v4
# with:
# context: ./
# file: ./docker/dev.Dockerfile
# builder: ${{ steps.buildx.outputs.name }}
# push: true
# tags: hdfgroup/hermes-dev:latest
# - name: Build and push user.Dockerfile
# uses: docker/build-push-action@v4
# with:
# context: ./
# file: ./docker/user.Dockerfile
# builder: ${{ steps.buildx.outputs.name }}
# push: true
# tags: hdfgroup/hermes:latest
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ spack install hermes@master

Hermes makes use of the CMake build system and requires an out of source build.

Hermes has a corresponding package, hermes_shm, which has all the same dependencies as Hermes.
```
spack install hermes_shm
spack load hermes_shm
```

You can then build Hermes with CMake:
```
cd /path/to/hermes
mkdir build
Expand Down

0 comments on commit 6450085

Please sign in to comment.