a5afa85c0a
Using Docker just doesn't work: simply running "docker pull" fails due to the pull rate limits all the time, see e.g. https://travis-ci.org/github/wxWidgets/wxWidgets/jobs/759810039#L2628 while following Travis own instructions for dealing with this problem at https://blog.travis-ci.com/docker-rate-limits results in the build failure due to secret environment variables not being accessible from the PRs for security reasons, see https://travis-ci.org/github/wxWidgets/wxWidgets/jobs/759820694 So use pip everywhere, even under Ubuntu 14.04, where it doesn't work out of the box as it tries to install globally when it doesn't have the permissions to do it.
88 lines
3.2 KiB
YAML
88 lines
3.2 KiB
YAML
# 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
|
|
|
|
# Specify the default platform.
|
|
os: linux
|
|
dist: xenial
|
|
|
|
jobs:
|
|
include:
|
|
- dist: trusty
|
|
compiler: gcc
|
|
env: wxGTK_VERSION=2 wxUSE_XVFB=1
|
|
name: wxGTK 2 Ubuntu 14.04
|
|
- dist: bionic
|
|
compiler: gcc
|
|
env: wxGTK_VERSION=3 wxTOOLSET=cmake wxCMAKE_GENERATOR="Unix Makefiles"
|
|
name: wxGTK 3 CMake Ubuntu 18.04
|
|
- os: osx
|
|
osx_image: xcode7.3
|
|
compiler: clang
|
|
env: wxSKIP_SAMPLES=1
|
|
name: wxOSX Xcode 7.3
|
|
- os: osx
|
|
osx_image: xcode9.4
|
|
compiler: clang
|
|
env: wxTOOLSET=cmake wxCMAKE_GENERATOR=Xcode wxCMAKE_DEFINES="-DCMAKE_CXX_STANDARD=11"
|
|
name: wxOSX CMake Xcode 9.4
|
|
- os: osx
|
|
osx_image: xcode11.3
|
|
env: wxCONFIGURE_FLAGS="--enable-monolithic --with-cxx=17 --with-macosx-version-min=10.12 --enable-stl"
|
|
name: wxOSX Xcode 11.3
|
|
- os: osx
|
|
osx_image: xcode11.4
|
|
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
|
|
name: wxOSX iOS Xcode 11.4
|
|
- os: osx
|
|
osx_image: xcode11.4
|
|
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
|
|
name: wxOSX iOS CMake Xcode 11.4
|
|
- os: linux
|
|
arch: arm64
|
|
env: wxGTK_VERSION=3 wxCONFIGURE_FLAGS="--disable-sys-libs" wxLXC=1
|
|
name: wxGTK ARM64
|
|
- 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
|
|
|
|
# The environments running these builds are flaky and often fail for the
|
|
# reasons that have nothing to do with the build itself.
|
|
allow_failures:
|
|
- os: linux
|
|
arch: arm64
|
|
env: wxGTK_VERSION=3 wxCONFIGURE_FLAGS="--disable-sys-libs" wxLXC=1
|
|
name: wxGTK ARM64
|
|
- 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
|
|
|
|
branches:
|
|
only:
|
|
- master
|
|
- WX_3_0_BRANCH
|
|
|
|
notifications:
|
|
email:
|
|
if: repo = wxWidgets/wxWidgets
|
|
recipients:
|
|
- vadim@wxwidgets.org
|
|
on_success: change
|
|
on_failure: change
|
|
|
|
before_install: ./build/tools/before_install.sh
|
|
|
|
script: ./build/tools/travis-ci.sh
|