Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/cime-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,17 @@ jobs:
uses: docker/setup-buildx-action@v3
with:
buildkitd-flags: --debug

- name: Lowercase the github.repository name
# This step addresses https://github.com/orgs/community/discussions/25768
run: |
echo "REPO_NAME=`echo ${{ github.repository }} | tr '[:upper:]' '[:lower:]'`" >> $GITHUB_ENV

- name: Build and push image
uses: docker/build-push-action@v6
with:
context: ./unit-testing/
push: true
tags: ghcr.io/${{ github.repository }}/unit-testing:latest
tags: ghcr.io/${{ env.REPO_NAME}}/unit-testing:latest
cache-from: type=gha
cache-to: type=gha,mode=max
2 changes: 1 addition & 1 deletion unit-testing/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/glemieux/containers/spack-env:latest
FROM ghcr.io/ngeet/containers/spack-env:latest

ARG CIME_VERSION=cime6.1.102
ARG CCS_CONFIG_VERSION=ccs_config_cesm1.0.46
Expand Down
Loading