From df9240b0273df161d127e05714ffcac464726092 Mon Sep 17 00:00:00 2001 From: yomaytk Date: Sat, 28 Feb 2026 16:18:29 +0000 Subject: [PATCH] Remove the logic of building elfconv base image. --- .github/workflows/tests.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1303762..68e10ae 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,13 +21,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Pull base image or build locally - run: | - if ! docker pull ghcr.io/yomaytk/elfconv-base:arm64; then - echo "Base image not found, building locally..." - docker build -f Dockerfile.base -t ghcr.io/yomaytk/elfconv-base:arm64 . - fi - - name: build container image run: docker build . --build-arg ECV_AARCH64=1 -t elfconv-image @@ -41,13 +34,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Pull base image or build locally - run: | - if ! docker pull ghcr.io/yomaytk/elfconv-base:amd64; then - echo "Base image not found, building locally..." - docker build -f Dockerfile.base -t ghcr.io/yomaytk/elfconv-base:amd64 . - fi - - name: build container image run: docker build . --build-arg ECV_X86=1 -t elfconv-image