From af76a632e6b9834df07bbae97b2a275a9966723b Mon Sep 17 00:00:00 2001 From: Matthew Whitlock Date: Wed, 13 Nov 2024 12:19:19 -0500 Subject: [PATCH] Use single-component names --- .github/docker-compose.yml | 6 +++--- .github/workflows/ci_checks.yaml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/docker-compose.yml b/.github/docker-compose.yml index 8c0a0c7..cc38637 100644 --- a/.github/docker-compose.yml +++ b/.github/docker-compose.yml @@ -1,6 +1,6 @@ services: bootstrap: - image: "local/bootstrap" + image: "bootstrap" build: dockerfile_inline: | FROM spack/ubuntu-jammy:latest @@ -19,13 +19,13 @@ services: - .github/:/configs env: - image: "sandialabs/fenix/env" + image: "env" build: # Generated by running the bootstrap image dockerfile: .github/spack.Dockerfile fenix: - image: "local/fenix" + image: "fenix" build: dockerfile_inline: | ARG OMPI_VERSION diff --git a/.github/workflows/ci_checks.yaml b/.github/workflows/ci_checks.yaml index 6537363..72dba2a 100644 --- a/.github/workflows/ci_checks.yaml +++ b/.github/workflows/ci_checks.yaml @@ -37,9 +37,9 @@ jobs: targets: bootstrap workdir: . set: | - *.output=type=docker,name=local/bootstrap/${{ matrix.ompi_version }} + *.output=type=docker,name=local/bootstrap *.cache-from=type=gha,scope=local/bootstrap/${{ matrix.ompi_version }} - *.cache-to=type=gha,mode=max,scope=local/bootstrap + *.cache-to=type=gha,mode=max,scope=local/bootstrap/${{ matrix.ompi_version }} *.args.OMPI_VERSION=${{ matrix.ompi_version }} - name: Bootstrap the environment Dockerfile @@ -49,14 +49,14 @@ jobs: uses: docker/bake-action@v5 with: files: .github/docker-compose.yml - targets: sandialabs/fenix/env + targets: env workdir: . pull: true push: true set: | *.cache-from=type=gha,scope=local/env/${{ matrix.ompi_version }} *.cache-to=type=gha,mode=max,scope=local/env/${{ matrix.ompi_version }} - *.output=type=docker,name=ghcr.io/sandialabs/fenix/env:${{ matrix.ompi_version }} + *.output=type=image,name=ghcr.io/sandialabs/fenix/env:${{ matrix.ompi_version }} - name: Build Fenix uses: docker/bake-action@v5