Skip to content

Commit af76a63

Browse files
Use single-component names
1 parent 88f3b58 commit af76a63

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
bootstrap:
3-
image: "local/bootstrap"
3+
image: "bootstrap"
44
build:
55
dockerfile_inline: |
66
FROM spack/ubuntu-jammy:latest
@@ -19,13 +19,13 @@ services:
1919
- .github/:/configs
2020

2121
env:
22-
image: "sandialabs/fenix/env"
22+
image: "env"
2323
build:
2424
# Generated by running the bootstrap image
2525
dockerfile: .github/spack.Dockerfile
2626

2727
fenix:
28-
image: "local/fenix"
28+
image: "fenix"
2929
build:
3030
dockerfile_inline: |
3131
ARG OMPI_VERSION

.github/workflows/ci_checks.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
targets: bootstrap
3838
workdir: .
3939
set: |
40-
*.output=type=docker,name=local/bootstrap/${{ matrix.ompi_version }}
40+
*.output=type=docker,name=local/bootstrap
4141
*.cache-from=type=gha,scope=local/bootstrap/${{ matrix.ompi_version }}
42-
*.cache-to=type=gha,mode=max,scope=local/bootstrap
42+
*.cache-to=type=gha,mode=max,scope=local/bootstrap/${{ matrix.ompi_version }}
4343
*.args.OMPI_VERSION=${{ matrix.ompi_version }}
4444
4545
- name: Bootstrap the environment Dockerfile
@@ -49,14 +49,14 @@ jobs:
4949
uses: docker/bake-action@v5
5050
with:
5151
files: .github/docker-compose.yml
52-
targets: sandialabs/fenix/env
52+
targets: env
5353
workdir: .
5454
pull: true
5555
push: true
5656
set: |
5757
*.cache-from=type=gha,scope=local/env/${{ matrix.ompi_version }}
5858
*.cache-to=type=gha,mode=max,scope=local/env/${{ matrix.ompi_version }}
59-
*.output=type=docker,name=ghcr.io/sandialabs/fenix/env:${{ matrix.ompi_version }}
59+
*.output=type=image,name=ghcr.io/sandialabs/fenix/env:${{ matrix.ompi_version }}
6060
6161
- name: Build Fenix
6262
uses: docker/bake-action@v5

0 commit comments

Comments
 (0)