From b1738ad2584486dce6e3b177787227db8874e03d Mon Sep 17 00:00:00 2001 From: Salendarsingh Gaud Date: Sun, 26 Jul 2026 10:37:50 +0530 Subject: [PATCH] ci: pull kmake image from ECR pull kmake image from ECR, and use reuable workflow from kernel-config to pull docker, so that update in kernel-config is reflected in kernel-checker as well. Signed-off-by: Salendarsingh Gaud --- .github/workflows/checker.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/checker.yml b/.github/workflows/checker.yml index e4787e9..5ba8917 100644 --- a/.github/workflows/checker.yml +++ b/.github/workflows/checker.yml @@ -23,14 +23,11 @@ jobs: labels: [self-hosted, kernel-prd-u2404-x64-large-od-ephem] steps: - - name: Pull Docker Image - run: | - echo "Pulling Docker Image..." - echo "::group::$(printf '__________ %-100s' 'Pull Image' | tr ' ' _)" - docker pull artifacts.codelinaro.org/clo-420-qli-registry/kmake-image:ver.1.0 - docker tag artifacts.codelinaro.org/clo-420-qli-registry/kmake-image:ver.1.0 kmake-image:latest - echo "::endgroup::" - echo "Docker Image Pulled Successfully" + - name: Pull docker image + uses: qualcomm-linux/kernel-config/.github/actions/pull_docker_image@main + with: + image: ${{ vars.TECH_TEAM_NAMESPACE }}/kmake-image:${{ vars.KMAKE_IMAGE_VERSION }} + registry: ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com - name: Checkout code id: sync