@@ -10,12 +10,19 @@ jobs:
10
10
strategy :
11
11
matrix :
12
12
os : [ubuntu-22.04]
13
- platform : [x64]
14
- compiler : [gcc]
13
+ platform : [x32, x64]
14
+ compiler : [gcc, clang ]
15
15
configure :
16
- - {label: "with pcre2", opt: "--with-pcre2" }
17
- - {label: "with lua", opt: "--with-lua" }
18
- - {label: "wo lua", opt: "--without-lua" }
16
+ - {label: "with pcre, no study, no jit", opt: "--enable-pcre-study=no" }
17
+ - {label: "with pcre, with study, no jit", opt: "--enable-pcre-study=yes" }
18
+ - {label: "with pcre, no study, with jit", opt: "--enable-pcre-study=no --enable-pcre-jit" }
19
+ - {label: "with pcre, with study, with jit", opt: "--enable-pcre-study=yes --enable-pcre-jit" }
20
+ - {label: "with pcre2", opt: "--with-pcre2 --enable-pcre-study=no" }
21
+ - {label: "with pcre2, with study, no jit", opt: "--with-pcre2 --enable-pcre-study=yes" }
22
+ - {label: "with pcre2, no study, with jit", opt: "--with-pcre2 --enable-pcre-study=no --enable-pcre-jit" }
23
+ - {label: "with pcre2, with study, with jit", opt: "--with-pcre2 --enable-pcre-study=yes --enable-pcre-jit" }
24
+ - {label: "with lua", opt: "--with-lua" }
25
+ - {label: "wo lua", opt: "--without-lua" }
19
26
steps :
20
27
- name : Setup Dependencies
21
28
run : |
0 commit comments