1language: c
2
3before_install:
4    - sudo apt-get -qq update
5    - sudo apt-get -y install libssl-dev
6
7install:
8    - git clone https://github.com/creytiv/re.git
9    - cd re && make && sudo make install && cd ..
10    - sudo ldconfig
11    - wget "https://github.com/alfredh/pytools/raw/master/ccheck.py"
12
13script:
14    - make EXTRA_CFLAGS=-Werror
15    - python2 ccheck.py
16