blob: ee6e2ae532a0ce6f126b8687d798fb3cb6a6b7b9 (
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 -j$(sysctl -n hw.ncpu)
- make -j$(sysctl -n hw.ncpu) check gl_public_submodule_commit=
|