From ed54bf2587aacd0ece5cc0931ce2c2b56fafb9d0 Mon Sep 17 00:00:00 2001 From: Earlopain <14981592+Earlopain@users.noreply.github.com> Date: Tue, 23 Apr 2024 19:28:10 +0200 Subject: [PATCH] Remove 3.3.0 arm64 patch This is now part of 3.3.1 --- Dockerfile.template | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Dockerfile.template b/Dockerfile.template index 457a7c4bc..5bbca8b1e 100644 --- a/Dockerfile.template +++ b/Dockerfile.template @@ -238,16 +238,6 @@ RUN set -eux; \ cat file.c; \ } > file.c.new; \ mv file.c.new file.c; \ -{{ if .version == "3.3.0" then ( -}} - \ - # workaround crash on arm64 - # https://bugs.ruby-lang.org/issues/20085 - # https://github.com/ruby/ruby/pull/9385 <- https://github.com/ruby/ruby/pull/9371 - wget -O 'arm64-fix.patch' 'https://github.com/ruby/ruby/commit/7f97e3540ce448b501bcbee15afac5f94bb22dd9.patch?full_index=1'; \ - echo '86bc65415fd62cb2272a4df249f39fb79db15617ad05c540e05a22f02eae73b3 *arm64-fix.patch' | sha256sum --check --strict; \ - patch -p1 -i arm64-fix.patch; \ - rm arm64-fix.patch; \ -{{ ) else "" end -}} \ autoconf; \ {{ if is_alpine and "3.0" == (env.version | rtrimstr("-rc")) then ( -}}