2017-03-05 00:02:49 +00:00
|
|
|
language: c
|
|
|
|
compiler:
|
|
|
|
- clang
|
|
|
|
- gcc
|
|
|
|
|
2017-03-22 21:27:32 +00:00
|
|
|
dist: trusty
|
|
|
|
sudo: required
|
|
|
|
|
2017-05-02 12:25:22 +00:00
|
|
|
env:
|
|
|
|
global:
|
|
|
|
- CFLAGS="-Wno-unused-result"
|
|
|
|
- CRYB_TO=0.20170502
|
|
|
|
|
2017-03-07 01:31:56 +00:00
|
|
|
before_install:
|
|
|
|
- sudo apt-get update -q
|
|
|
|
- sudo apt-get install -y pkg-config
|
2017-05-02 12:25:22 +00:00
|
|
|
- wget https://github.com/cryb-to/cryb-to/releases/download/${CRYB_TO}/cryb-to_${CRYB_TO}-1_amd64.deb
|
|
|
|
- sudo dpkg -i cryb-to_${CRYB_TO}-1_amd64.deb
|
2017-03-07 01:31:56 +00:00
|
|
|
|
2017-03-05 00:02:49 +00:00
|
|
|
before_script:
|
|
|
|
- ./autogen.sh
|
|
|
|
- ./configure --enable-developer-warnings --enable-werror
|
|
|
|
|
|
|
|
script:
|
|
|
|
- make check
|