Skip to content
Open
Show file tree
Hide file tree
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
16 changes: 8 additions & 8 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,22 @@ jobs:
fail-fast: false
matrix:
include:
- name: "nginx 1.29.8 + OpenSSL"
NGINX_VERSION: "1.29.8"
- name: "nginx 1.31.0 + OpenSSL"
NGINX_VERSION: "1.31.0"
TEST_NGINX_TIMEOUT: "5"

- name: "nginx 1.29.8 + OpenSSL + HTTP/2"
NGINX_VERSION: "1.29.8"
- name: "nginx 1.31.0 + OpenSSL + HTTP/2"
NGINX_VERSION: "1.31.0"
TEST_NGINX_TIMEOUT: "5"
TEST_NGINX_USE_HTTP2: "1"

- name: "nginx 1.29.8 + OpenSSL + HTTP/3"
NGINX_VERSION: "1.29.8"
- name: "nginx 1.31.0 + OpenSSL + HTTP/3"
NGINX_VERSION: "1.31.0"
TEST_NGINX_USE_HTTP3: "1"
TEST_NGINX_QUIC_IDLE_TIMEOUT: "3"

- name: "nginx 1.29.8 + BoringSSL + HTTP/3"
NGINX_VERSION: "1.29.8"
- name: "nginx 1.31.0 + BoringSSL + HTTP/3"
NGINX_VERSION: "1.31.0"
BORINGSSL: "1"
TEST_NGINX_USE_HTTP3: "1"
TEST_NGINX_QUIC_IDLE_TIMEOUT: "3"
Expand Down
1 change: 1 addition & 0 deletions t/023-rewrite/socket-keepalive.t
Original file line number Diff line number Diff line change
Expand Up @@ -792,6 +792,7 @@ qr/lua tcp socket connection pool size: 25\b/]
}

location /foo {
keepalive_timeout 60s;
echo foo;
}

Expand Down
4 changes: 2 additions & 2 deletions t/138-balancer.t
Original file line number Diff line number Diff line change
Expand Up @@ -735,7 +735,7 @@ GET /t
--- response_body eval
qr/502 Bad Gateway/
--- no_error_log
[error]
[crit]
--- error_log eval
qr/SSL_do_handshake.*(?:no application protocol|NO_APPLICATION_PROTOCOL).*SSL alert number 120\) while SSL handshaking to upstream/
qr/SSL_do_handshake.*(?:no application protocol|NO_APPLICATION_PROTOCOL).*alert number 120\) while SSL handshaking to upstream/
--- skip_nginx: 4: < 1.29.4
Loading