From a5301fe1294183f3336c0c98fe00ab0250b1b278 Mon Sep 17 00:00:00 2001 From: Maksym Sobolyev Date: Wed, 17 Jul 2024 16:08:16 -0700 Subject: [PATCH] Add simple pipeline to install dependencies and build a docker image for Nvidia and Intel HW. --- .github/workflows/main.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 841c284..eeb09dd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,11 +31,9 @@ jobs: matrix: infer-hw: ['nvidia', 'intel'] env: - DOCKER_REPO: 'sippylabs/infernos' - BASE_IMAGE: 'ubuntu:24.10' - PYTHON_VER: '3.11' - CONDA_MAINENV: 'Infernos' - INFER_HW: ${{ matrix.infer-hw }} + DOCKER_REPO: 'sippylabs/infernos_redder' + BASE_IMAGE: "sippylabs/infernos:${{ matrix.infer-hw }}-wip" + INFER_HW: "${{ matrix.infer-hw }}" steps: - name: Checkout repository uses: actions/checkout@v4 @@ -78,9 +76,6 @@ jobs: push: true build-args: | BASE_IMAGE=${{ env.BASE_IMAGE }} - PYTHON_VER=${{ env.PYTHON_VER }} - CONDA_MAINENV=${{ env.CONDA_MAINENV }} - INFER_HW=${{ env.INFER_HW }} tags: | ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }}