File tree Expand file tree Collapse file tree 1 file changed +22
-14
lines changed Expand file tree Collapse file tree 1 file changed +22
-14
lines changed Original file line number Diff line number Diff line change 9
9
env :
10
10
CARGO_TERM_COLOR : ' always'
11
11
RUST_BACKTRACE : ' 1'
12
- NGX_CONFIGURE : |
12
+ NGX_CONFIGURE : >-
13
13
auto/configure
14
- --with-compat
15
- --with-debug
16
- --with-http_realip_module
17
- --with-http_ssl_module
18
- --with-http_v2_module
19
- --with-http_v3_module
20
- --with-stream
21
- --with-stream_realip_module
22
- --with-stream_ssl_module
23
- --with-threads
14
+ --with-compat
15
+ --with-debug
16
+ --with-http_realip_module
17
+ --with-http_ssl_module
18
+ --with-http_v2_module
19
+ --with-stream
20
+ --with-stream_realip_module
21
+ --with-stream_ssl_module
22
+ --with-threads
24
23
25
24
jobs :
26
25
test :
@@ -29,12 +28,15 @@ jobs:
29
28
strategy :
30
29
fail-fast : false
31
30
matrix :
31
+ nginx-ref :
32
+ - master
33
+ - stable-1.28
32
34
module :
33
35
- static
34
36
- dynamic
35
- nginx-ref :
36
- # master
37
- - stable-1.26
37
+ include :
38
+ - nginx-ref : stable-1.24
39
+ module : dynamic
38
40
39
41
steps :
40
42
- uses : actions/checkout@v4
63
65
key : ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
64
66
restore-keys : ${{ runner.os }}-cargo-
65
67
68
+ - name : Update configure arguments
69
+ if : matrix.nginx-ref != 'stable-1.24'
70
+ run : |
71
+ echo NGX_CONFIGURE="${NGX_CONFIGURE} --with-http_v3_module" \
72
+ >> "$GITHUB_ENV"
73
+
66
74
- name : Configure nginx with static modules
67
75
if : matrix.module == 'static'
68
76
working-directory : nginx
You can’t perform that action at this time.
0 commit comments