Update OpenResty to v1.29.2.4 (GitHub direct download)#12
Closed
hamawata wants to merge 2 commits into
Closed
Conversation
v1.29.2.4 is not available on openresty.org/download, so switch the download URL to the GitHub archive tarball directly. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
….2.3-4 - OpenSSL: 3.4.3 → 3.5.6 (patch version: 3.4.1 → 3.5.5) - PCRE2: 10.44 → 10.47 (SHA256 updated) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
hamawata
commented
May 15, 2026
| && curl -fSL https://github.com/openresty/openresty/archive/refs/tags/v${RESTY_VERSION}.tar.gz -o openresty-${RESTY_VERSION}.tar.gz \ | ||
| && tar xzf openresty-${RESTY_VERSION}.tar.gz \ | ||
| && cd /tmp/openresty-${RESTY_VERSION} \ | ||
| && eval ./configure -j${RESTY_J} ${_RESTY_CONFIG_DEPS} ${RESTY_CONFIG_OPTIONS} ${RESTY_CONFIG_OPTIONS_MORE} ${RESTY_LUAJIT_OPTIONS} ${RESTY_PCRE_OPTIONS} \ |
Author
There was a problem hiding this comment.
DL先変えただけだと、ここで./configureが存在せずエラー(util/configureにありそう)
Member
|
すいません、対応ありがとうございます! こっちが正解でした。(なぜか、ソースをbuild する必要があったりするというカオス) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
RESTY_VERSIONを1.27.1.2→1.29.2.4に更新openresty.org/downloadから GitHub タグ直接DLに変更変更内容
GitHub archive の tarball は
openresty-1.29.2.4/に展開されるため、その後のcd /tmp/openresty-${RESTY_VERSION}は変更不要。Test plan
docker build --platform=linux/arm64 -t dev-resty:local .でビルド成功を確認docker run --rm dev-resty:local -vでバージョンが1.29.2.4であることを確認🤖 Generated with Claude Code