mirror of
https://github.com/clearlinux/tallow.git
synced 2026-04-28 10:23:35 +00:00
23 lines
377 B
YAML
23 lines
377 B
YAML
sudo: required
|
|
dist: trusty
|
|
language: c
|
|
compiler: gcc
|
|
os: linux
|
|
|
|
before_script:
|
|
- ./autogen.sh
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- libsystemd-journal-dev
|
|
- valgrind
|
|
- autoconf
|
|
- automake
|
|
- libjson-c-dev
|
|
|
|
script:
|
|
- ./configure && make && make distcheck
|