mirror of
https://github.com/cryb-to/cryb-otp.git
synced 2024-11-08 14:45:39 +00:00
24 lines
461 B
YAML
24 lines
461 B
YAML
language: c
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
dist: trusty
|
|
sudo: required
|
|
|
|
before_install:
|
|
- sudo apt-get update -q
|
|
- sudo apt-get install -y pkg-config
|
|
- wget https://github.com/cryb-to/cryb-to/releases/download/0.20170406/cryb-to_0.20170406-1_amd64.deb
|
|
- sudo dpkg -i cryb-to_0.20170406-1_amd64.deb
|
|
|
|
before_script:
|
|
- ./autogen.sh
|
|
- ./configure --enable-developer-warnings --enable-werror
|
|
|
|
script:
|
|
- make check
|
|
|
|
env:
|
|
global:
|
|
- CFLAGS="-Wno-unused-result"
|