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

66 lines
1.4 KiB
YAML

language: cpp
cache: ccache
# Use Linux by default
os: linux
dist: bionic
# CMake version out of date: update
# TODO: add ARM64, PPC, SPARC builds when we find CMake for them
addons:
snaps:
- name: cmake
confinement: classic
channel: latest
jobs:
include:
# OSX workers are slower to start up. Having these first in the build matrix makes travis faster overall.
- name: "AppleClang - Release"
os: osx
osx_image: xcode11.3
before_install:
- HOMEBREW_NO_AUTO_UPDATE=1 brew install ccache
env: &Release
- TRAVIS_CUBERITE_BUILD_TYPE=RELEASE
- name: "AppleClang - Debug"
os: osx
osx_image: xcode11.3
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
- export PATH=/snap/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"
compiler: gcc
env: *Release
- name: "GCC 7.4 - Debug"
compiler: gcc
before_install: *use-cmake
env: *Debug
before_script:
- export PATH=$(echo "$PATH" | sed -e 's/:\/usr\/lib\/ccache//')
script: ./travisbuild.sh
notifications:
email:
on_success: change
on_failure: always
branches:
only:
- master