Skip to content

Commit

Permalink
#496: Fixing aarch binary not building (#497)
Browse files Browse the repository at this point in the history
* upgrading aarch64 builder image

* [Gradle Release Plugin] - new version commit:  '3.21.3-snapshot'.

* adjusting deps

* debian deps only worked on debian 11
  • Loading branch information
mageddo authored Jun 25, 2024
1 parent 9768116 commit 3d4fcd4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
8 changes: 3 additions & 5 deletions Dockerfile.builder.linux-aarch64
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
FROM arm64v8/debian:9-slim

COPY ./src/main/docker/builder/sources.list /etc/apt/sources.list
FROM arm64v8/debian:11-slim

RUN apt-get update -y &&\
apt-get install --force-yes -y zlib1g-dev=1:1.2.8.dfsg-5 zlib1g=1:1.2.8.dfsg-5 &&\
apt-get install --force-yes -y build-essential libz-dev curl
apt-get install --force-yes -y build-essential curl &&\
apt-get install --force-yes -y libz-dev zlib1g-dev zlib1g

ENV GRAALVM_URL='https://github.com/graalvm/graalvm-ce-builds/releases/download/jdk-21.0.2/graalvm-community-jdk-21.0.2_linux-aarch64_bin.tar.gz'
RUN mkdir /graalvm &&\
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.builder.linux-amd64
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:9-slim

COPY ./src/main/docker/builder/sources.list /etc/apt/sources.list
COPY ./src/main/docker/builder-amd64/sources.list /etc/apt/sources.list

RUN apt-get update -y &&\
apt-get install --force-yes -y zlib1g-dev=1:1.2.8.dfsg-5 zlib1g=1:1.2.8.dfsg-5 &&\
Expand Down
3 changes: 3 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 3.21.3
* #496: Fixing aarch binary not building

## 3.21.2
* #285, #494: Fixing amd64 static docker image.
* #435: Make DPS dynamic linked binary compatible with libgc 2.15 again
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=3.21.2-snapshot
version=3.21.3-snapshot
File renamed without changes.

0 comments on commit 3d4fcd4

Please sign in to comment.