Skip to content

Commit 705002b

Browse files
authored
Merge pull request #3076 from airween/v2/ciworklow
Add new configure flag, fixes CI settings.
2 parents 7d601dc + 6870df4 commit 705002b

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/ci.yml renamed to .github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,17 @@ jobs:
1313
platform: [x64]
1414
compiler: [gcc]
1515
configure:
16-
- {label: "with pcre2", opt: "--with-pcre2" }
17-
- {label: "with lua", opt: "--with-lua" }
16+
- {label: "with pcre2", opt: "--with-pcre2" }
17+
- {label: "with lua", opt: "--with-lua" }
18+
- {label: "wo lua", opt: "--without-lua" }
1819
steps:
1920
- name: Setup Dependencies
2021
run: |
2122
sudo apt-get update -y -qq
2223
sudo apt-get install -y apache2-dev libxml2-dev liblua5.1-0-dev libcurl4-gnutls-dev libpcre2-dev pkg-config libyajl-dev
2324
- uses: actions/checkout@v2
24-
- name: build.sh
25-
run: ./build.sh
25+
- name: autogen.sh
26+
run: ./autogen.sh
2627
- name: configure ${{ matrix.configure.label }}
2728
run: ./configure ${{ matrix.configure.opt }}
2829
- uses: ammaraskar/gcc-problem-matcher@master

0 commit comments

Comments
 (0)