Add Travis tests with the default compilers

This commit is contained in:
Peter Dimov
2017-10-24 16:37:12 +03:00
committed by Vinnie Falco
parent 41e61a7458
commit 645fdb6581
2 changed files with 11 additions and 0 deletions

View File

@@ -25,6 +25,16 @@ addons:
matrix:
include:
# Default g++
- os: linux
compiler: g++
script: b2 -j3 libs/beast/test toolset=gcc cxxstd=11
# Default clang++
- os: linux
compiler: clang++
script: b2 -j3 libs/beast/test toolset=clang cxxstd=11
# GCC 6.0, Debug + Coverage
- os: linux
compiler: g++-6

View File

@@ -8,6 +8,7 @@ Version 126:
* Fix doc typo
* Fix shadowing in session_alloc
* Fix executor type compilation
* Add Travis tests with the default compilers
--------------------------------------------------------------------------------