2013-07-25 21:55:17 +00: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 14:57:34 +00:00
|
|
|
sudo: required
|
2013-07-25 21:55:17 +00:00
|
|
|
|
2015-12-30 14:56:44 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
2018-01-31 23:02:02 +00:00
|
|
|
- dist: precise
|
|
|
|
compiler: gcc
|
2015-12-30 14:56:44 +00:00
|
|
|
- dist: trusty
|
|
|
|
compiler: gcc
|
|
|
|
- dist: trusty
|
2018-01-31 23:02:02 +00:00
|
|
|
compiler: gcc
|
|
|
|
env: wxCONFIGURE_FLAGS="--enable-utf8 --enable-utf8only --enable-monolithic"
|
|
|
|
- dist: trusty
|
2015-12-30 14:56:44 +00:00
|
|
|
compiler: gcc
|
2017-11-22 01:33:53 +00:00
|
|
|
env: wxGTK_VERSION=3 wxCONFIGURE_FLAGS="--enable-cxx11 --enable-stl" wxMAKEFILE_FLAGS="CXXFLAGS=-std=c++11"
|
2015-12-30 14:56:44 +00:00
|
|
|
- dist: trusty
|
|
|
|
compiler: clang
|
2017-11-10 14:24:42 +00:00
|
|
|
env: wxCONFIGURE_FLAGS="--disable-shared --disable-sys-libs"
|
2017-12-09 13:38:11 +00:00
|
|
|
- dist: trusty
|
|
|
|
compiler: gcc
|
|
|
|
env: wxTOOLSET=cmake wxCMAKE_GENERATOR="Unix Makefiles"
|
2015-12-30 14:56:44 +00:00
|
|
|
- os: osx
|
2016-12-12 22:04:53 +00:00
|
|
|
osx_image: xcode6.4
|
2015-12-30 14:56:44 +00:00
|
|
|
compiler: clang
|
2017-01-07 19:05:00 +00:00
|
|
|
env: wxCONFIGURE_FLAGS="--enable-cxx11" wxMAKEFILE_FLAGS="CXXFLAGS=-std=c++11" wxSKIP_SAMPLES=1
|
2017-12-09 13:38:11 +00:00
|
|
|
- os: osx
|
|
|
|
compiler: clang
|
2018-02-08 10:01:47 +00:00
|
|
|
env: wxTOOLSET=cmake wxCMAKE_GENERATOR=Xcode wxCMAKE_DEFINES="-DCMAKE_CXX_STANDARD=11"
|
2013-07-25 21:55:17 +00:00
|
|
|
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
2014-05-16 10:53:51 +00:00
|
|
|
- WX_3_0_BRANCH
|
2013-07-25 21:55:17 +00:00
|
|
|
|
|
|
|
notifications:
|
|
|
|
email:
|
|
|
|
recipients:
|
|
|
|
- vadim@wxwidgets.org
|
|
|
|
on_success: change
|
|
|
|
on_failure: change
|
|
|
|
|
2015-12-30 17:03:53 +00:00
|
|
|
before_install: ./build/tools/before_install.sh
|
2013-08-07 11:08:21 +00:00
|
|
|
|
2016-10-06 14:04:55 +00:00
|
|
|
script: bash build/tools/travis-ci.sh
|