From a3d906ff8bad699f996382a11dc48d12fd4c738e Mon Sep 17 00:00:00 2001 From: lukemartinlogan Date: Mon, 16 Oct 2023 10:56:27 -0500 Subject: [PATCH 1/2] Mention spackability for CMake install --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index a16e7c10f..e23d8ebcf 100644 --- a/README.md +++ b/README.md @@ -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 From fb8b4eaf98357ec285126df20f66e59a5e7caad7 Mon Sep 17 00:00:00 2001 From: lukemartinlogan Date: Mon, 16 Oct 2023 10:58:21 -0500 Subject: [PATCH 2/2] Remove docker builds for now --- .../build_and_push_docker_images.yml | 52 +++++++++---------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/.github/workflows/build_and_push_docker_images.yml b/.github/workflows/build_and_push_docker_images.yml index e35935914..38e647369 100644 --- a/.github/workflows/build_and_push_docker_images.yml +++ b/.github/workflows/build_and_push_docker_images.yml @@ -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