blob: 0083c3573e792e456c1ccf22762796cd1ffff8e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
os:
- osx
language: c
compiler:
- clang
git:
submodules: false
notifications:
email:
on_success: change
on_failure: always
before_install:
- git submodule update --init
- if [ "$TRAVIS_OS_NAME" = "osx" ]; then
brew install pkg-config autoconf automake autogen libtool nettle valgrind p11-kit libtasn1 unbound libidn gettext;
fi
script:
- PATH=/usr/local/opt/gettext/bin:$PATH make autoreconf && rm -f tests/suite/mini-eagain2.c
- PATH=/usr/local/opt/gettext/bin:$PATH ./configure --disable-valgrind-tests --disable-doc --disable-guile --without-p11-kit --disable-dependency-tracking
- make -j4
- make -j4 check gl_public_submodule_commit=
|