Skip to content

Commit 462bf70

Browse files
committed
Add more test cases
1 parent 6b9ea5a commit 462bf70

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/ci.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,19 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-22.04]
13-
platform: [x64]
14-
compiler: [gcc]
13+
platform: [x32, x64]
14+
compiler: [gcc, clang]
1515
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" }
1926
steps:
2027
- name: Setup Dependencies
2128
run: |

0 commit comments

Comments
 (0)