mirror of
https://github.com/aria2/aria2.git
synced 2024-11-23 13:59:50 +00:00
50 lines
1.5 KiB
YAML
50 lines
1.5 KiB
YAML
dist: trusty
|
|
language: cpp
|
|
cache: ccache
|
|
matrix:
|
|
include:
|
|
- os: linux
|
|
compiler: gcc
|
|
- os: linux
|
|
compiler: clang
|
|
- os: osx
|
|
osx_image: xcode8.3
|
|
compiler: clang
|
|
sudo: required
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-7
|
|
- autoconf
|
|
- automake
|
|
- autotools-dev
|
|
- autopoint
|
|
- libtool
|
|
- pkg-config
|
|
- libssl-dev
|
|
- libc-ares-dev
|
|
- libxml2-dev
|
|
- zlib1g-dev
|
|
- libsqlite3-dev
|
|
- libssh2-1-dev
|
|
- libcppunit-dev
|
|
before_install:
|
|
- $CC --version
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
|
|
# gmp is already installed
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install --force cppunit gettext openssl libssh2 c-ares sqlite3 ccache ; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew link --force cppunit gettext openssl libssh2 c-ares sqlite3 ccache ; fi
|
|
- if [ "$CXX" = "g++" ]; then export CXX="g++-7" CC="gcc-7"; fi
|
|
- if [ "$CXX" = "clang++" ]; then export CXX="$CXX -Qunused-arguments" CC="$CC -Qunused-arguments"; fi
|
|
- $CC --version
|
|
before_script:
|
|
- autoreconf -i
|
|
- automake
|
|
- autoconf
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then ./configure --without-openssl --without-gnutls --with-appletls --disable-nls CPPFLAGS=-fsanitize=address LDFLAGS=-fsanitize=address; fi
|
|
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then ./configure CPPFLAGS=-fsanitize=address LDFLAGS="-fsanitize=address -fuse-ld=gold"; fi
|
|
script:
|
|
- make CC="ccache $CC" CXX="ccache $CXX" check
|