Skip to content

Commit

Permalink
disable arm build due to failing ci (#478)
Browse files Browse the repository at this point in the history
temp disable the ARM64 build until it can be determined why its failing
the CI. Need to get an updated amd64 build to quay
  • Loading branch information
luke-kucing authored Nov 21, 2024
1 parent d42a6cf commit 534ae63
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
5 changes: 3 additions & 2 deletions scripts/docker-smoke-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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" \
Expand Down

0 comments on commit 534ae63

Please sign in to comment.