Skip to content

Commit 534ae63

Browse files
authored
disable arm build due to failing ci (#478)
temp disable the ARM64 build until it can be determined why its failing the CI. Need to get an updated amd64 build to quay
1 parent d42a6cf commit 534ae63

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/docker-publish.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ jobs:
4545
build-images:
4646
strategy:
4747
matrix:
48-
arch: ["arm64", "amd64"]
48+
#arch: ["arm64", "amd64"]
49+
# NOTE(luke): temporary disable arm64 since its failing the smoke test
50+
arch: ["amd64"]
4951
runs-on: ubuntu-latest-m
5052
needs: [setup, set-short-sha]
5153
env:

scripts/docker-smoke-test.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ start_container() {
2929
fi
3030

3131
echo Starting container "$name"
32-
docker run -p "$port":"$port" \
33-
--entrypoint uvicorn \
32+
docker run --platform "$DOCKER_PLATFORM" \
33+
-p "$port":"$port" \
34+
--entrypoint uvicorn \
3435
-d \
3536
--rm \
3637
--name "$name" \

0 commit comments

Comments
 (0)