mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-13 21:36:00 +03:00
30 lines
298 B
YAML
30 lines
298 B
YAML
dist: trusty
|
|
sudo: false
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libyajl-dev
|
|
- libgeoip-dev
|
|
- liblmdb-dev
|
|
|
|
language: cpp
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
env:
|
|
- OPTS="--enable-parser-generation"
|
|
- OPTS="--without-curl"
|
|
|
|
|
|
script:
|
|
- ./build.sh
|
|
- ./configure $OPTS
|
|
- make
|
|
- make check
|
|
|
|
|
|
|