Skip to content

Commit

Permalink
ci: temporarily disable arm build
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwalker committed Jun 30, 2023
1 parent a4e6677 commit e1f08d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ build: setup-buildx ## Build the Docker image
docker buildx build --output "type=image,push=false" \
--build-arg ERLANG_VERSION=$(ERLANG_VERSION) \
--build-arg ELIXIR_VERSION=$(VERSION) \
--platform linux/amd64,linux/arm64 \
--platform linux/amd64 \
--cache-from "type=local,src=$(BUILDX_CACHE_DIR)" \
--cache-to "type=local,dest=$(BUILDX_CACHE_DIR)" \
-t $(IMAGE_NAME):$(VERSION) \
Expand Down Expand Up @@ -73,7 +73,7 @@ release: setup-buildx ## Build and release the Docker image to Docker Hub
docker buildx build --push \
--build-arg ERLANG_VERSION=$(ERLANG_VERSION) \
--build-arg ELIXIR_VERSION=$(VERSION) \
--platform linux/amd64,linux/arm64 \
--platform linux/amd64 \
--cache-from "type=local,src=$(BUILDX_CACHE_DIR)" \
--cache-to "type=local,dest=$(BUILDX_CACHE_DIR)" \
-t $(IMAGE_NAME):$(VERSION) \
Expand Down

1 comment on commit e1f08d5

@Sasku
Copy link

@Sasku Sasku commented on e1f08d5 Dec 7, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I saw that this is supported with alpine-erlang, and have been eyeing on this issue. I believe the JIT arm 64 issue was resolved already in OTP 25 some time ago. Would it be possible to enable the arm build?

Please sign in to comment.