mirror of https://github.com/rspamd/rspamd.git
Rapid spam filtering system
https://rspamd.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
422 B
19 lines
422 B
language: c
|
|
|
|
before_script:
|
|
- sudo apt-get update -qq
|
|
- sudo apt-get install -qq debhelper dpkg-dev cmake libevent-dev libglib2.0-dev libgmime-2.6-dev liblua5.1-0-dev libpcre3-dev cdbs libssl-dev libjudy-dev
|
|
|
|
script:
|
|
- mkdir _build
|
|
- cd _build
|
|
- cmake .. -DCMAKE_INSTALL_PREFIX=../_install -DCMAKE_C_COMPILER=$CC
|
|
- cmake --build . --target install
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
branches:
|
|
only:
|
|
- master
|