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
|
|
|
|
|
2020-07-06 11:50:39 -04:00
|
|
|
# Specify the default platform.
|
|
|
|
os: linux
|
|
|
|
dist: xenial
|
|
|
|
|
2020-07-06 11:45:58 -04:00
|
|
|
jobs:
|
2015-12-30 09:56:44 -05:00
|
|
|
include:
|
2020-04-21 17:08:34 -04:00
|
|
|
- dist: trusty
|
2020-04-19 16:55:35 -04:00
|
|
|
compiler: gcc
|
2020-04-20 00:32:04 -04:00
|
|
|
env: wxGTK_VERSION=2 wxUSE_XVFB=1
|
2020-04-21 17:08:34 -04:00
|
|
|
name: wxGTK 2 Ubuntu 14.04
|
|
|
|
- dist: bionic
|
2020-04-19 16:55:35 -04:00
|
|
|
compiler: gcc
|
2020-04-26 16:01:11 -04:00
|
|
|
env: wxGTK_VERSION=3 wxTOOLSET=cmake wxCMAKE_GENERATOR="Unix Makefiles"
|
|
|
|
name: wxGTK 3 CMake Ubuntu 18.04
|
2020-04-19 16:55:35 -04:00
|
|
|
- os: osx
|
2020-07-04 16:45:02 -04:00
|
|
|
osx_image: xcode7.3
|
2020-04-19 16:55:35 -04:00
|
|
|
compiler: clang
|
2020-07-05 17:41:12 -04:00
|
|
|
env: wxSKIP_SAMPLES=1
|
2020-07-04 16:45:02 -04:00
|
|
|
name: wxOSX Xcode 7.3
|
2020-04-19 16:55:35 -04:00
|
|
|
- os: osx
|
2020-04-19 17:04:27 -04:00
|
|
|
osx_image: xcode9.4
|
2020-04-19 16:55:35 -04:00
|
|
|
compiler: clang
|
|
|
|
env: wxTOOLSET=cmake wxCMAKE_GENERATOR=Xcode wxCMAKE_DEFINES="-DCMAKE_CXX_STANDARD=11"
|
2020-04-22 11:54:01 -04:00
|
|
|
name: wxOSX CMake Xcode 9.4
|
2020-04-21 17:07:57 -04:00
|
|
|
- os: osx
|
|
|
|
osx_image: xcode11.3
|
2020-04-22 11:20:48 -04:00
|
|
|
env: wxCONFIGURE_FLAGS="--enable-monolithic --with-cxx=17 --with-macosx-version-min=10.12 --enable-stl"
|
2020-04-21 17:07:57 -04:00
|
|
|
name: wxOSX Xcode 11.3
|
2020-05-07 02:29:05 -04:00
|
|
|
- os: osx
|
|
|
|
osx_image: xcode11.4
|
2020-07-06 11:08:38 -04:00
|
|
|
env: wxCONFIGURE_FLAGS="--enable-monolithic --with-cxx=17 --host=i686-apple-darwin_sim --build=x86_64-apple-darwin17.7.0 --with-osx_iphone --with-macosx-version-min=10.0 --with-macosx-sdk=$(xcrun --sdk iphonesimulator --show-sdk-path) --enable-stl --disable-sys-libs" wxALLOW_WARNINGS=1 wxSKIP_GUI=1 wxSKIP_TESTING=1 wxSKIP_SAMPLES=1
|
2020-05-07 02:29:05 -04:00
|
|
|
name: wxOSX iOS Xcode 11.4
|
2020-06-18 14:27:00 -04:00
|
|
|
- os: osx
|
|
|
|
osx_image: xcode11.4
|
2021-01-08 07:03:24 -05:00
|
|
|
env: wxTOOLSET=cmake wxCMAKE_GENERATOR=Xcode wxCMAKE_DEFINES="-DCMAKE_SYSTEM_NAME=iOS -DCMAKE_FIND_ROOT_PATH=/usr/local -DCMAKE_XCODE_ATTRIBUTE_CODE_SIGNING_ALLOWED=NO" wxCMAKE_SAMPLES=OFF wxCMAKE_TESTS=OFF
|
2020-06-18 14:27:00 -04:00
|
|
|
name: wxOSX iOS CMake Xcode 11.4
|
2020-04-06 20:31:26 -04:00
|
|
|
- os: linux
|
|
|
|
arch: arm64
|
2020-10-19 10:45:57 -04:00
|
|
|
env: wxGTK_VERSION=3 wxCONFIGURE_FLAGS="--disable-sys-libs" wxLXC=1
|
2020-04-19 17:04:27 -04:00
|
|
|
name: wxGTK ARM64
|
2020-04-06 20:31:26 -04:00
|
|
|
- os: linux
|
|
|
|
arch: ppc64le
|
2020-04-22 15:00:28 -04:00
|
|
|
env: wxCONFIGURE_FLAGS="--disable-sys-libs --disable-gui" wxLXC=1 wxSKIP_GUI=1
|
2020-05-06 16:44:43 -04:00
|
|
|
name: wxBase PowerPC64
|
2020-04-06 20:31:26 -04:00
|
|
|
- os: linux
|
|
|
|
arch: s390x
|
2020-04-22 15:00:28 -04:00
|
|
|
env: wxCONFIGURE_FLAGS="--disable-sys-libs --disable-gui" wxLXC=1 wxSKIP_GUI=1
|
2020-05-06 16:44:43 -04:00
|
|
|
name: wxBase S/390
|
2013-07-25 17:55:17 -04:00
|
|
|
|
2020-05-06 16:47:26 -04:00
|
|
|
# The environments running these builds are flaky and often fail for the
|
|
|
|
# reasons that have nothing to do with the build itself.
|
|
|
|
allow_failures:
|
2020-07-11 07:41:38 -04:00
|
|
|
- os: linux
|
|
|
|
arch: arm64
|
2020-10-19 10:45:57 -04:00
|
|
|
env: wxGTK_VERSION=3 wxCONFIGURE_FLAGS="--disable-sys-libs" wxLXC=1
|
2020-07-11 07:41:38 -04:00
|
|
|
name: wxGTK ARM64
|
2020-05-06 16:47:26 -04:00
|
|
|
- os: linux
|
|
|
|
arch: ppc64le
|
|
|
|
env: wxCONFIGURE_FLAGS="--disable-sys-libs --disable-gui" wxLXC=1 wxSKIP_GUI=1
|
|
|
|
name: wxBase PowerPC64
|
|
|
|
- os: linux
|
|
|
|
arch: s390x
|
|
|
|
env: wxCONFIGURE_FLAGS="--disable-sys-libs --disable-gui" wxLXC=1 wxSKIP_GUI=1
|
|
|
|
name: wxBase S/390
|
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:
|
2020-07-06 11:45:03 -04:00
|
|
|
if: repo = wxWidgets/wxWidgets
|
2013-07-25 17:55:17 -04:00
|
|
|
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
|
|
|
|
2020-07-07 06:43:12 -04:00
|
|
|
script: ./build/tools/travis-ci.sh
|