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

fix: pin test-nginx to a working version to fix tests with --- http2 #11816

Merged
merged 2 commits into from
Dec 10, 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
8 changes: 8 additions & 0 deletions ci/linux_openresty_common_runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,15 @@ do_install() {
# sudo apt-get install tree -y
# tree deps

# The latest version of test-nginx is not compatible with the current set of tests with ---http2
# due to this commit: https://github.com/openresty/test-nginx/commit/0ccd106cbe6878318e5a591634af8f1707c411a6
# This change pins test-nginx to a commit before this one.
git clone --depth 1 https://github.com/openresty/test-nginx.git test-nginx
cd test-nginx
git fetch --depth=1 origin ced30a31bafab6c68873efb17b6d80f39bcd95f5
git checkout ced30a31bafab6c68873efb17b6d80f39bcd95f5
cd ..

make utils

mkdir -p build-cache
Expand Down
Loading