39 lines
895 B
YAML
39 lines
895 B
YAML
language: c
|
|
|
|
matrix:
|
|
include:
|
|
- env: test="x64 4.8.4 (make)"
|
|
os: linux
|
|
dist: trusty
|
|
compiler: gcc
|
|
script: make
|
|
|
|
- env: test="x64 precise (autotools)"
|
|
os: linux
|
|
dist: precise
|
|
sudo: required
|
|
compiler: gcc
|
|
script: ./autogen.sh && ./configure && make distcheck
|
|
|
|
- env: test="x64 4.8.4 (autotools)"
|
|
os: linux
|
|
dist: trusty
|
|
compiler: gcc
|
|
script: ./autogen.sh && ./configure && make distcheck
|
|
|
|
- env: test="x64 5.0 (autotools)"
|
|
os: linux
|
|
dist: trusty
|
|
compiler: clang
|
|
script: ./autogen.sh && ./configure && make distcheck
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- autoconf
|
|
- automake
|
|
- libtool
|
|
- m4
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|