chore(ci): renaming of docker images

new convention: org/repo/image_name:tag
This commit is contained in:
youben11
2025-04-23 14:23:51 +01:00
parent 0ac3e0eddf
commit 4cf195c9c4
9 changed files with 13 additions and 13 deletions

View File

@@ -14,7 +14,7 @@ on:
- 'release/*'
env:
DOCKER_IMAGE_TEST: ghcr.io/zama-ai/concrete-compiler
DOCKER_IMAGE_TEST: ghcr.io/zama-ai/concrete/compiler-ci
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }}
SLACK_USERNAME: ${{ secrets.BOT_USERNAME }}

View File

@@ -41,7 +41,7 @@ jobs:
needs: [setup-instance]
runs-on: ${{ needs.setup-instance.outputs.runner-name }}
env:
image: ghcr.io/zama-ai/cuda
image: ghcr.io/zama-ai/concrete/cuda
strategy:
matrix:
include:
@@ -103,7 +103,7 @@ jobs:
needs: [setup-instance, cuda-image]
runs-on: ${{ needs.setup-instance.outputs.runner-name }}
env:
image: ghcr.io/zama-ai/concrete-compiler
image: ghcr.io/zama-ai/concrete/compiler-ci
dockerfile: docker/Dockerfile.concrete-compiler-env
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
@@ -169,7 +169,7 @@ jobs:
needs: [setup-instance, compiler-image]
runs-on: ${{ needs.setup-instance.outputs.runner-name }}
env:
image: ghcr.io/zama-ai/concrete-compiler-gpu
image: ghcr.io/zama-ai/concrete/compiler-ci-gpu
dockerfile: docker/Dockerfile.concrete-compiler-env-gpu
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

View File

@@ -14,7 +14,7 @@ on:
- 'release/*'
env:
DOCKER_IMAGE_TEST: ghcr.io/zama-ai/concrete-compiler
DOCKER_IMAGE_TEST: ghcr.io/zama-ai/concrete/compiler-ci
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }}
SLACK_USERNAME: ${{ secrets.BOT_USERNAME }}

View File

@@ -14,7 +14,7 @@ on:
- 'release/*'
env:
DOCKER_IMAGE_TEST: ghcr.io/zama-ai/concrete-compiler-gpu
DOCKER_IMAGE_TEST: ghcr.io/zama-ai/concrete/compiler-ci-gpu
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }}
SLACK_USERNAME: ${{ secrets.BOT_USERNAME }}

View File

@@ -12,7 +12,7 @@ on:
- 'release/*'
env:
DOCKER_IMAGE: ghcr.io/zama-ai/concrete-compiler
DOCKER_IMAGE: ghcr.io/zama-ai/concrete/compiler-ci
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }}
SLACK_USERNAME: ${{ secrets.BOT_USERNAME }}

View File

@@ -12,7 +12,7 @@ on:
- 'main'
- 'release/*'
env:
DOCKER_IMAGE: ghcr.io/zama-ai/concrete-compiler
DOCKER_IMAGE: ghcr.io/zama-ai/concrete/compiler-ci
concurrency:
group: concrete_python_benchmark_${{ github.ref }}

View File

@@ -10,8 +10,8 @@ on:
- cron: "0 3 * * 2-6"
env:
DOCKER_IMAGE_TEST: ghcr.io/zama-ai/concrete-compiler
DOCKER_IMAGE_TEST_GPU: ghcr.io/zama-ai/concrete-compiler-gpu
DOCKER_IMAGE_TEST: ghcr.io/zama-ai/concrete/compiler-ci
DOCKER_IMAGE_TEST_GPU: ghcr.io/zama-ai/concrete/compiler-ci-gpu
CUDA_PATH: /usr/local/cuda-11.8
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }}

View File

@@ -12,7 +12,7 @@ on:
- 'release/*'
env:
DOCKER_IMAGE_TEST: ghcr.io/zama-ai/concrete-compiler
DOCKER_IMAGE_TEST: ghcr.io/zama-ai/concrete/compiler-ci
ACTION_RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
SLACK_CHANNEL: ${{ secrets.SLACK_CHANNEL }}
SLACK_USERNAME: ${{ secrets.BOT_USERNAME }}

View File

@@ -1,7 +1,7 @@
ARG BASEIMAGE=ghcr.io/zama-ai/concrete-compiler:latest
ARG BASEIMAGE=ghcr.io/zama-ai/concrete/compiler-ci:latest
# hadolint ignore=DL3006
FROM $BASEIMAGE
# Setup CUDA
COPY --from=ghcr.io/zama-ai/cuda:11-8 /usr/local/cuda-11.8/ /usr/local/cuda-11.8/
COPY --from=ghcr.io/zama-ai/concrete/cuda:11-8 /usr/local/cuda-11.8/ /usr/local/cuda-11.8/
ENV PATH="$PATH:/usr/local/cuda-11.8/bin"