Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove 3.3.0 arm64 patch #448

Merged
merged 1 commit into from
Apr 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -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 ( -}}
Expand Down
Loading