From cfea75478d599dd82f9fc893aaebf2d220e17c39 Mon Sep 17 00:00:00 2001 From: Dimitri Gnidash Date: Tue, 26 Nov 2024 10:53:10 -0500 Subject: [PATCH] #12496: Respect not installing the wheel with the image #12496: Clean up the echo statements --- .github/actions/generate-docker-tag/action.yml | 2 -- .github/workflows/publish-release-image.yaml | 5 +++++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/actions/generate-docker-tag/action.yml b/.github/actions/generate-docker-tag/action.yml index eb8f4d70d70..4c8c0a1f3e4 100644 --- a/.github/actions/generate-docker-tag/action.yml +++ b/.github/actions/generate-docker-tag/action.yml @@ -24,8 +24,6 @@ runs: - name: Determine Full Docker Image Tag shell: bash run: | - echo ${{ github.repository }} - echo ${{ inputs.image }} echo "TT_METAL_DOCKER_IMAGE_TAG=ghcr.io/${{ github.repository }}/${{ inputs.image }}:${{ env.IMAGE_TAG }}" >> $GITHUB_ENV echo "TT_METAL_REF_IMAGE_TAG=ghcr.io/${{ github.repository }}/${{ inputs.image }}:latest" >> $GITHUB_ENV - name: Output Docker Image Tag diff --git a/.github/workflows/publish-release-image.yaml b/.github/workflows/publish-release-image.yaml index 2f0436d684b..c5dda98716c 100644 --- a/.github/workflows/publish-release-image.yaml +++ b/.github/workflows/publish-release-image.yaml @@ -74,6 +74,11 @@ jobs: cmd: pytest tests/end_to_end_tests, } ] + env: + TT_METAL_ENV: ${{ vars.TT_METAL_ENV }} + ARCH_NAME: ${{ matrix.test_group.arch }} + LOGURU_LEVEL: INFO + LD_LIBRARY_PATH: ${{ github.workspace }}/build/lib runs-on: ${{ matrix.test_group.runs-on }} steps: - name: Checkout