2013-07-25 17:55:17 -04:00
|
|
|
# This is the control file for Travis continuous integration system.
|
|
|
|
#
|
|
|
|
# It is used automatically for the repositories on Github if it's found in the
|
|
|
|
# root directory of the project.
|
|
|
|
language: cpp
|
2015-12-17 09:57:34 -05:00
|
|
|
sudo: required
|
2013-07-25 17:55:17 -04:00
|
|
|
|
2015-12-30 09:56:44 -05:00
|
|
|
matrix:
|
|
|
|
include:
|
2018-01-31 18:02:02 -05:00
|
|
|
- dist: precise
|
|
|
|
compiler: gcc
|
2015-12-30 09:56:44 -05:00
|
|
|
- dist: trusty
|
|
|
|
compiler: gcc
|
|
|
|
- dist: trusty
|
2018-01-31 18:02:02 -05:00
|
|
|
compiler: gcc
|
|
|
|
env: wxCONFIGURE_FLAGS="--enable-utf8 --enable-utf8only --enable-monolithic"
|
|
|
|
- dist: trusty
|
2015-12-30 09:56:44 -05:00
|
|
|
compiler: gcc
|
2017-11-21 20:33:53 -05:00
|
|
|
env: wxGTK_VERSION=3 wxCONFIGURE_FLAGS="--enable-cxx11 --enable-stl" wxMAKEFILE_FLAGS="CXXFLAGS=-std=c++11"
|
2015-12-30 09:56:44 -05:00
|
|
|
- dist: trusty
|
|
|
|
compiler: clang
|
2017-11-10 09:24:42 -05:00
|
|
|
env: wxCONFIGURE_FLAGS="--disable-shared --disable-sys-libs"
|
2017-12-09 08:38:11 -05:00
|
|
|
- dist: trusty
|
|
|
|
compiler: gcc
|
|
|
|
env: wxTOOLSET=cmake wxCMAKE_GENERATOR="Unix Makefiles"
|
2015-12-30 09:56:44 -05:00
|
|
|
- os: osx
|
2016-12-12 17:04:53 -05:00
|
|
|
osx_image: xcode6.4
|
2015-12-30 09:56:44 -05:00
|
|
|
compiler: clang
|
2017-01-07 14:05:00 -05:00
|
|
|
env: wxCONFIGURE_FLAGS="--enable-cxx11" wxMAKEFILE_FLAGS="CXXFLAGS=-std=c++11" wxSKIP_SAMPLES=1
|
2017-12-09 08:38:11 -05:00
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
2018-01-25 06:22:34 -05:00
|
|
|
env: wxTOOLSET=cmake wxCMAKE_GENERATOR=Xcode wxCMAKE_DEFINES="-DCMAKE_CXX_STANDARD=11 -DCMAKE_CXX_FLAGS=-stdlib=libc++"
|
2013-07-25 17:55:17 -04:00
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
2014-05-16 06:53:51 -04:00
|
|
|
- WX_3_0_BRANCH
|
2013-07-25 17:55:17 -04:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
recipients:
|
|
|
|
- vadim@wxwidgets.org
|
|
|
|
on_success: change
|
|
|
|
on_failure: change
|
|
|
|
|
2015-12-30 12:03:53 -05:00
|
|
|
before_install: ./build/tools/before_install.sh
|
2013-08-07 07:08:21 -04:00
|
|
|
|
2016-10-06 10:04:55 -04:00
|
|
|
script: bash build/tools/travis-ci.sh
|