mirror of
https://github.com/cryb-to/cryb-otp.git
synced 2024-11-08 14:45:39 +00:00
25 lines
485 B
YAML
25 lines
485 B
YAML
language: c
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
dist: trusty
|
|
sudo: required
|
|
|
|
env:
|
|
global:
|
|
- CFLAGS="-Wno-unused-result"
|
|
- CRYB_TO=0.20170502
|
|
|
|
before_install:
|
|
- sudo apt-get update -q
|
|
- sudo apt-get install -y pkg-config
|
|
- 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
|
|
|
|
before_script:
|
|
- ./autogen.sh
|
|
- ./configure --enable-developer-warnings --enable-werror
|
|
|
|
script:
|
|
- make check
|