Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

Expand Down