mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 05:45:59 +03:00
Testing github workflow
This commit is contained in:
parent
0096b17787
commit
17e3ec7787
75
.github/workflows/ci.yml
vendored
Normal file
75
.github/workflows/ci.yml
vendored
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
name: Quality Assurance
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-linux:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [ubuntu-20.04]
|
||||||
|
platform: [x32, x64]
|
||||||
|
compiler: [gcc, clang]
|
||||||
|
configure:
|
||||||
|
- {label: "with parser generation", opt: "--enable-parser-generation" }
|
||||||
|
- {label: "without curl", opt: "--without-curl" }
|
||||||
|
- {label: "without yajl", opt: "--without-yajl" }
|
||||||
|
- {label: "without geoip", opt: "--without-geoip" }
|
||||||
|
- {label: "without lmdb", opt: "--without-lmdb" }
|
||||||
|
- {label: "without ssdeep", opt: "--without-ssdeep" }
|
||||||
|
- {label: "without lua", opt: "--without-lua" }
|
||||||
|
- {label: "without maxmind", opt: "--without-maxmind" }
|
||||||
|
steps:
|
||||||
|
- name: Setup Dependencies
|
||||||
|
run: |
|
||||||
|
sudo add-apt-repository --yes ppa:maxmind/ppa
|
||||||
|
sudo apt-get update -y -qq
|
||||||
|
sudo apt-get install -y libfuzzy-dev libyajl-dev libgeoip-dev liblua5.2-dev liblmdb-dev cppcheck libmaxminddb-dev libcurl4-openssl-dev
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
- name: build.sh
|
||||||
|
run: ./build.sh
|
||||||
|
- name: configure ${{ matrix.configure.label }}
|
||||||
|
run: ./configure ${{ matrix.configure.opt }}
|
||||||
|
- name: make
|
||||||
|
run: make -j `nproc`
|
||||||
|
- name: check
|
||||||
|
run: make check
|
||||||
|
- name: check-static
|
||||||
|
run: make check-static
|
||||||
|
|
||||||
|
build-macos:
|
||||||
|
runs-on: ${{ matrix.os }}
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
os: [macos-10.15, macos-11.0]
|
||||||
|
compiler: [gcc, clang]
|
||||||
|
configure:
|
||||||
|
- {label: "with parser generation", opt: "--enable-parser-generation" }
|
||||||
|
- {label: "without curl", opt: "--without-curl" }
|
||||||
|
- {label: "without yajl", opt: "--without-yajl" }
|
||||||
|
- {label: "without geoip", opt: "--without-geoip" }
|
||||||
|
- {label: "without lmdb", opt: "--without-lmdb" }
|
||||||
|
- {label: "without ssdeep", opt: "--without-ssdeep" }
|
||||||
|
- {label: "without lua", opt: "--without-lua" }
|
||||||
|
- {label: "without maxmind", opt: "--without-maxmind" }
|
||||||
|
steps:
|
||||||
|
- name: Setup Dependencies
|
||||||
|
run: |
|
||||||
|
brew install autoconf automake cppcheck lmdb libyaml lua ssdeep libmaxminddb
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
submodules: true
|
||||||
|
- name: build.sh
|
||||||
|
run: ./build.sh
|
||||||
|
- name: configure ${{ matrix.configure.label }}
|
||||||
|
run: ./configure ${{ matrix.configure.opt }}
|
||||||
|
- name: make
|
||||||
|
run: make -j `nproc`
|
||||||
|
- name: check
|
||||||
|
run: make check
|
||||||
|
- name: check-static
|
||||||
|
run: make check-static
|
@ -40,6 +40,8 @@ class XmlNS : public Action {
|
|||||||
m_href(o.m_href)
|
m_href(o.m_href)
|
||||||
{ };
|
{ };
|
||||||
|
|
||||||
|
XmlNS& operator=(XmlNS &arg) noexcept = delete;
|
||||||
|
|
||||||
bool init(std::string *error) override;
|
bool init(std::string *error) override;
|
||||||
|
|
||||||
std::string getScope() const {
|
std::string getScope() const {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user