373 lines
10 KiB
YAML
373 lines
10 KiB
YAML
language: cpp
|
|
os: linux
|
|
dist: xenial
|
|
|
|
cache:
|
|
directories:
|
|
- ${TRAVIS_BUILD_DIR}/boost_1_64_0
|
|
- ${TRAVIS_BUILD_DIR}/boost_1_73_0
|
|
|
|
matrix:
|
|
include:
|
|
#
|
|
#---------------------------------------------------------------------------
|
|
# Linux / g++-9
|
|
#---------------------------------------------------------------------------
|
|
#
|
|
# Linux / g++-9 -std=c++2a / -O2 / standalone
|
|
#
|
|
- os: linux
|
|
dist: bionic
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-9
|
|
env:
|
|
- CXXFLAGS="-std=c++2a -fconcepts -Wall -Wextra -O2"
|
|
- CONFIGFLAGS="--with-boost=no"
|
|
- MATRIX_EVAL="CC=gcc-9 CXX=g++-9"
|
|
compiler: gcc
|
|
#
|
|
# Linux / g++-9 -std=c++17 / -O2 / boost 1.73
|
|
#
|
|
- os: linux
|
|
dist: bionic
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-9
|
|
env:
|
|
- BOOST_DIR="boost_1_73_0"
|
|
- BOOST_URL="https://sourceforge.net/projects/boost/files/boost/1.73.0/boost_1_73_0.tar.bz2/download"
|
|
- CXXFLAGS="-std=c++17 -Wall -Wextra -O2"
|
|
- CONFIGFLAGS="--with-boost=$PWD/$BOOST_DIR"
|
|
- MATRIX_EVAL="CC=gcc-9 CXX=g++-9"
|
|
compiler: gcc
|
|
#
|
|
# Linux / g++-9 -std=c++14 / -O0 / standalone / separate compilation
|
|
#
|
|
- os: linux
|
|
dist: bionic
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-9
|
|
env:
|
|
- CXXFLAGS="-std=c++14 -Wall -Wextra -O0 -fno-inline"
|
|
- CONFIGFLAGS="--with-boost=no --enable-separate-compilation"
|
|
- MATRIX_EVAL="CC=gcc-9 CXX=g++-9"
|
|
compiler: gcc
|
|
#
|
|
#---------------------------------------------------------------------------
|
|
# Linux / g++-6
|
|
#---------------------------------------------------------------------------
|
|
#
|
|
# Linux / g++-6 / -O2 / standalone
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-6
|
|
env:
|
|
- CXXFLAGS="-Wall -Wextra -O2"
|
|
- CONFIGFLAGS="--with-boost=no"
|
|
- MATRIX_EVAL="CC=gcc-6 CXX=g++-6"
|
|
compiler: gcc
|
|
#
|
|
# Linux / g++-6 / -O0 / standalone / handler tracking
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-6
|
|
env:
|
|
- CXXFLAGS="-Wall -Wextra -O0 -fno-inline -DASIO_ENABLE_HANDLER_TRACKING"
|
|
- CONFIGFLAGS="--with-boost=no"
|
|
- MATRIX_EVAL="CC=gcc-6 CXX=g++-6"
|
|
compiler: gcc
|
|
#
|
|
# Linux / g++-6 / -O0 / standalone / epoll disabled
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-6
|
|
env:
|
|
- CXXFLAGS="-Wall -Wextra -O0 -fno-inline -DASIO_DISABLE_EPOLL"
|
|
- CONFIGFLAGS="--with-boost=no"
|
|
- MATRIX_EVAL="CC=gcc-6 CXX=g++-6"
|
|
compiler: gcc
|
|
#
|
|
# Linux / g++-6 / -O0 / standalone / separate compilation / handler tracking
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-6
|
|
env:
|
|
- CXXFLAGS="-Wall -Wextra -O0 -fno-inline -DASIO_ENABLE_HANDLER_TRACKING"
|
|
- CONFIGFLAGS="--with-boost=no --enable-separate-compilation"
|
|
- MATRIX_EVAL="CC=gcc-6 CXX=g++-6"
|
|
compiler: gcc
|
|
#
|
|
# Linux / g++-6 / -O0 / standalone / separate compilation / epoll disabled
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-6
|
|
env:
|
|
- CXXFLAGS="-Wall -Wextra -O0 -fno-inline -DASIO_DISABLE_EPOLL"
|
|
- CONFIGFLAGS="--with-boost=no --enable-separate-compilation"
|
|
- MATRIX_EVAL="CC=gcc-6 CXX=g++-6"
|
|
compiler: gcc
|
|
#
|
|
# Linux / g++-6 / -O2 / boost 1.64
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-6
|
|
env:
|
|
- BOOST_DIR="boost_1_64_0"
|
|
- BOOST_URL="https://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.bz2/download"
|
|
- CXXFLAGS="-Wall -Wextra -O2"
|
|
- CONFIGFLAGS=""
|
|
- MATRIX_EVAL="CC=gcc-6 CXX=g++-6"
|
|
compiler: gcc
|
|
#
|
|
# Linux / g++-6 / -O0 / boost 1.64 / epoll disabled
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-6
|
|
env:
|
|
- BOOST_DIR="boost_1_64_0"
|
|
- BOOST_URL="https://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.bz2/download"
|
|
- CXXFLAGS="-Wall -Wextra -O0 -fno-inline -DASIO_DISABLE_EPOLL"
|
|
- CONFIGFLAGS=""
|
|
- MATRIX_EVAL="CC=gcc-6 CXX=g++-6"
|
|
compiler: gcc
|
|
#
|
|
# Linux / g++-6 / -O0 / boost 1.64 / separate compilation
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-6
|
|
env:
|
|
- BOOST_DIR="boost_1_64_0"
|
|
- BOOST_URL="https://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.bz2/download"
|
|
- CXXFLAGS="-Wall -Wextra -O0 -fno-inline"
|
|
- CONFIGFLAGS="--enable-separate-compilation"
|
|
- MATRIX_EVAL="CC=gcc-6 CXX=g++-6"
|
|
compiler: gcc
|
|
#
|
|
#---------------------------------------------------------------------------
|
|
# Linux / g++-4.8
|
|
#---------------------------------------------------------------------------
|
|
#
|
|
# Linux / g++-4.8 / -O2 / standalone
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
env:
|
|
- CXXFLAGS="-Wall -Wextra -O2"
|
|
- CONFIGFLAGS="--with-boost=no"
|
|
- MATRIX_EVAL="CC=gcc-4.8 CXX=g++-4.8"
|
|
compiler: gcc
|
|
#
|
|
# Linux / g++-4.8 / -O0 / standalone / separate compilation
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
env:
|
|
- CXXFLAGS="-Wall -Wextra -O0 -fno-inline"
|
|
- CONFIGFLAGS="--with-boost=no --enable-separate-compilation"
|
|
- MATRIX_EVAL="CC=gcc-4.8 CXX=g++-4.8"
|
|
compiler: gcc
|
|
#
|
|
# Linux / g++-4.8 / -O2 / boost 1.64
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
env:
|
|
- BOOST_DIR="boost_1_64_0"
|
|
- BOOST_URL="https://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.bz2/download"
|
|
- CXXFLAGS="-Wall -Wextra -O2"
|
|
- CONFIGFLAGS=""
|
|
- MATRIX_EVAL="CC=gcc-4.8 CXX=g++-4.8"
|
|
compiler: gcc
|
|
#
|
|
# Linux / g++-4.8 -std=c++11 / -O2 / boost 1.64
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
env:
|
|
- BOOST_DIR="boost_1_64_0"
|
|
- BOOST_URL="https://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.bz2/download"
|
|
- CXXFLAGS="-std=c++11 -Wall -Wextra -O2"
|
|
- CONFIGFLAGS=""
|
|
- MATRIX_EVAL="CC=gcc-4.8 CXX=g++-4.8"
|
|
compiler: gcc
|
|
#
|
|
#---------------------------------------------------------------------------
|
|
# Linux / clang-3.8
|
|
#---------------------------------------------------------------------------
|
|
#
|
|
# Linux / clang-3.8 / -O2 / standalone"
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
- llvm-toolchain-precise-3.8
|
|
packages:
|
|
- clang-3.8
|
|
env:
|
|
- CXXFLAGS="-Wall -Wextra -O2"
|
|
- CONFIGFLAGS="--with-boost=no"
|
|
- MATRIX_EVAL="CC=clang-3.8 CXX=clang++-3.8"
|
|
compiler: clang
|
|
#
|
|
# Linux / clang-3.8 / -O0 / standalone / separate compilation
|
|
#
|
|
- os: linux
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
- llvm-toolchain-precise-3.8
|
|
packages:
|
|
- clang-3.8
|
|
env:
|
|
- CXXFLAGS="-Wall -Wextra -O0 -fno-inline"
|
|
- CONFIGFLAGS="--with-boost=no --enable-separate-compilation"
|
|
- MATRIX_EVAL="CC=clang-3.8 CXX=clang++-3.8"
|
|
compiler: clang
|
|
#
|
|
#---------------------------------------------------------------------------
|
|
# macOS / xcode10.1
|
|
#---------------------------------------------------------------------------
|
|
#
|
|
# macOS / xcode10.1 / -std=c++2a -fcoroutines-ts -O2 / standalone
|
|
#
|
|
- os: osx
|
|
env:
|
|
- CXXFLAGS="-std=c++2a -fcoroutines-ts -Wall -Wextra -O0 -fno-inline"
|
|
- CONFIGFLAGS="--with-boost=no"
|
|
osx_image: xcode10.1
|
|
#
|
|
# macOS / xcode10.1 / -O2 / standalone
|
|
#
|
|
- os: osx
|
|
env:
|
|
- CXXFLAGS="-Wall -Wextra -O0 -fno-inline"
|
|
- CONFIGFLAGS="--with-boost=no"
|
|
osx_image: xcode10.1
|
|
#
|
|
# macOS / xcode10.1 / -O0 / standalone / kqueue disabled
|
|
#
|
|
- os: osx
|
|
env:
|
|
- CXXFLAGS="-Wall -Wextra -O0 -fno-inline -DASIO_DISABLE_KQUEUE"
|
|
- CONFIGFLAGS="--with-boost=no"
|
|
osx_image: xcode10.1
|
|
#
|
|
# macOS / xcode10.1 / -O0 / standalone / separate compilation
|
|
#
|
|
- os: osx
|
|
env:
|
|
- CXXFLAGS="-Wall -Wextra -O0 -fno-inline"
|
|
- CONFIGFLAGS="--with-boost=no --enable-separate-compilation"
|
|
osx_image: xcode10.1
|
|
#
|
|
# macOS / xcode10.1 / -O2 / boost 1.64
|
|
#
|
|
- os: osx
|
|
env:
|
|
- BOOST_DIR="boost_1_64_0"
|
|
- BOOST_URL="https://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.bz2/download"
|
|
- CXXFLAGS="-Wall -Wextra -O2"
|
|
- CONFIGFLAGS=""
|
|
osx_image: xcode10.1
|
|
#
|
|
# macOS / xcode10.1 / -O0 / boost 1.64 / separate compilation
|
|
#
|
|
- os: osx
|
|
env:
|
|
- BOOST_DIR="boost_1_64_0"
|
|
- BOOST_URL="https://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.bz2/download"
|
|
- CXXFLAGS="-Wall -Wextra -O0 -fno-inline"
|
|
- CONFIGFLAGS="--enable-separate-compilation"
|
|
osx_image: xcode10.1
|
|
|
|
before_install:
|
|
- eval "${MATRIX_EVAL}"
|
|
|
|
install:
|
|
- |
|
|
if [[ "${BOOST_URL}" != "" ]]; then
|
|
if [[ -z "$(ls -A ${BOOST_DIR})" ]]; then
|
|
{ travis_retry wget --quiet -O - ${BOOST_URL} | tar -xj; } || exit 1
|
|
fi
|
|
fi
|
|
|
|
script:
|
|
- cd asio && ./autogen.sh && ./configure $CONFIGFLAGS && make && make check
|
|
|
|
notifications:
|
|
email: false
|