Merge pull request #3076 from airween/v2/ciworklow

Add new configure flag, fixes CI settings.
This commit is contained in:
Ervin Hegedus 2024-02-08 01:03:40 +01:00 committed by GitHub
commit 705002be2b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,16 +13,17 @@ jobs:
platform: [x64]
compiler: [gcc]
configure:
- {label: "with pcre2", opt: "--with-pcre2" }
- {label: "with lua", opt: "--with-lua" }
- {label: "with pcre2", opt: "--with-pcre2" }
- {label: "with lua", opt: "--with-lua" }
- {label: "wo lua", opt: "--without-lua" }
steps:
- name: Setup Dependencies
run: |
sudo apt-get update -y -qq
sudo apt-get install -y apache2-dev libxml2-dev liblua5.1-0-dev libcurl4-gnutls-dev libpcre2-dev pkg-config libyajl-dev
- uses: actions/checkout@v2
- name: build.sh
run: ./build.sh
- name: autogen.sh
run: ./autogen.sh
- name: configure ${{ matrix.configure.label }}
run: ./configure ${{ matrix.configure.opt }}
- uses: ammaraskar/gcc-problem-matcher@master