1
0
Fork 0
cuberite-2a/.travis.yml

79 lines
2.3 KiB
YAML
Raw Normal View History

2013-12-19 15:07:58 -05:00
language: cpp
2020-05-21 18:52:19 -04:00
cache:
ccache: true
directories:
# Store ctest cost data
- Testing
2014-05-10 08:03:36 -04:00
# Use Linux by default
os: linux
dist: bionic
2020-05-21 18:52:19 -04:00
# TODO: add IBM builds when we find CMake for them
# add PowerPC builds when sqlite3 crashing is fixed
2014-05-10 08:03:36 -04:00
jobs:
include:
2020-05-21 18:52:19 -04:00
# ARM workers are the slowest. Having these first in the build matrix makes travis faster overall.
- name: "Clang 6.0 - Debug"
arch: arm64
compiler: clang
2020-03-27 06:20:30 -04:00
before_install:
2020-05-21 18:52:19 -04:00
- wget --output-document=${HOME}/CMake http://anaconda.org/conda-forge/cmake/3.17.0/download/linux-aarch64/cmake-3.17.0-h28c56e5_0.tar.bz2
- tar --extract --one-top-level=${HOME}/SeeMake --file ${HOME}/CMake
- export PATH=${HOME}/SeeMake/bin/:${PATH}
env: *Debug
- name: "AppleClang - Debug"
os: osx
osx_image: xcode11.3
2020-03-27 06:20:30 -04:00
before_install:
- HOMEBREW_NO_AUTO_UPDATE=1 brew install ccache
env: &Debug
- TRAVIS_CUBERITE_BUILD_TYPE=Debug
- name: "Clang 7.0 - Release"
compiler: clang
before_install: &use-cmake
- wget --output-document=${HOME}/CMake http://cmake.org/files/v3.17/cmake-3.17.2-Linux-x86_64.tar.gz
- tar --extract --one-top-level=${HOME}/SeeMake --strip-components 1 --file ${HOME}/CMake
- export PATH=${HOME}/SeeMake/bin/:${PATH}
env: *Release
- name: "Clang 7.0 - Debug"
compiler: clang
before_install: *use-cmake
env: *Debug
- name: "GCC 7.4 - Release, CMake 3.12, No Unity"
compiler: gcc
before_install:
- wget --output-document=${HOME}/CMake http://cmake.org/files/v3.13/cmake-3.13.0-Linux-x86_64.tar.gz
- tar --extract --one-top-level=${HOME}/SeeMake --strip-components 1 --file ${HOME}/CMake
- export PATH=${HOME}/SeeMake/bin/:${PATH}
env:
- TRAVIS_CUBERITE_BUILD_TYPE=Release
- TRAVIS_CUBERITE_UNITY_BUILDS=No
- name: "GCC 7.4 - Debug"
compiler: gcc
before_install: *use-cmake
env: *Debug
2017-10-21 09:25:21 -04:00
2020-07-06 19:04:32 -04:00
# Do not let CMake find ccache wrappers
# we use CMAKE_CXX_COMPILER_LAUNCHER for ccache support
before_script:
- export PATH=$(echo "$PATH" | sed -e 's/:\/usr\/lib\/ccache//')
2020-05-21 18:52:19 -04:00
# Run the build and tests
script: ./travisbuild.sh
2014-05-10 08:03:36 -04:00
2013-12-19 15:42:40 -05:00
notifications:
email:
on_success: change
on_failure: always
2020-05-21 18:52:19 -04:00
branches:
only:
- master