From c7566e7b2a33665ca3d581da00de7bbe997c0508 Mon Sep 17 00:00:00 2001 From: luke Date: Thu, 21 Nov 2024 17:07:32 -0500 Subject: [PATCH] disable arm build due to failing ci --- .github/workflows/docker-publish.yml | 4 +++- scripts/docker-smoke-test.sh | 5 +++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index d00336890..c6ca6de3b 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -45,7 +45,9 @@ jobs: build-images: strategy: matrix: - arch: ["arm64", "amd64"] + #arch: ["arm64", "amd64"] + # NOTE(luke): temporary disable arm64 since its failing the smoke test + arch: ["amd64"] runs-on: ubuntu-latest-m needs: [setup, set-short-sha] env: diff --git a/scripts/docker-smoke-test.sh b/scripts/docker-smoke-test.sh index dbfb2a4f6..808c88052 100755 --- a/scripts/docker-smoke-test.sh +++ b/scripts/docker-smoke-test.sh @@ -29,8 +29,9 @@ start_container() { fi echo Starting container "$name" - docker run -p "$port":"$port" \ - --entrypoint uvicorn \ + docker run --platform "$DOCKER_PLATFORM" \ + -p "$port":"$port" \ + --entrypoint uvicorn \ -d \ --rm \ --name "$name" \