mirror of
https://github.com/zama-ai/concrete.git
synced 2026-01-08 20:38:06 -05:00
chore(ci): renaming of docker images
new convention: org/repo/image_name:tag
This commit is contained in:
@@ -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 }}
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
2
.github/workflows/concrete_ml_test.yml
vendored
2
.github/workflows/concrete_ml_test.yml
vendored
@@ -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 }}
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user