hyperion.ng/.travis.yml

67 lines
1.7 KiB
YAML
Raw Normal View History

2019-02-17 18:56:04 +01:00
linux: &linux
os: linux
2019-05-26 18:06:44 +02:00
dist: xenial
2019-02-17 18:56:04 +01:00
services:
- docker
osx: &osx
os: osx
cache:
- ccache
- directories:
- $HOME/brew-cache
notifications:
email: false
language: cpp
2019-02-17 18:56:04 +01:00
before_install:
- ./.ci/ci_install.sh
2019-02-17 18:56:04 +01:00
jobs:
include:
- <<: *linux
name: "AMD64 (x64)"
env:
- DOCKER_TAG=amd64
- DOCKER_NAME="Debian Stretch (AMD64)"
- PLATFORM="x11"
2019-02-17 18:56:04 +01:00
- <<: *linux
name: "i386 (x86)"
env:
- DOCKER_TAG=i386
- DOCKER_NAME="Debian Stretch (i386)"
- PLATFORM="x11"
2019-06-14 17:35:42 +02:00
# ////////////////////////////////////////////////////////////////
# NOTE: Temporary disabled because travis timeouts
# ////////////////////////////////////////////////////////////////
# - <<: *linux
# name: "ARMv6hf (Raspberry Pi v1 & ZERO)"
# env:
# - DOCKER_TAG=armv6hf
# - DOCKER_NAME="Debian Stretch (Raspberry Pi v1 & ZERO)"
# - PLATFORM="rpi"
# - <<: *linux
# name: "ARMv7hf (Raspberry Pi 2 & 3)"
# env:
# - DOCKER_TAG=armv7hf
# - DOCKER_NAME="Debian Stretch (Raspberry Pi 2 & 3)"
# - PLATFORM="rpi"
# - <<: *linux
# name: "ARMv8 (Generic AARCH64)"
# env:
# - DOCKER_TAG=aarch64
# - DOCKER_NAME="ARMv8 (Generic AARCH64)"
# - PLATFORM="amlogic"
#
# ////////////////////////////////////////////////////////////////
2019-02-17 18:56:04 +01:00
- <<: *osx
2019-12-08 12:38:12 +01:00
osx_image: xcode11.2
name: "macOS 10.14 (Xcode 11.2.1)"
2019-02-17 18:56:04 +01:00
env:
- HOMEBREW_CACHE=$HOME/brew-cache
- PLATFORM="osx"
2019-02-17 18:56:04 +01:00
script:
- ./.ci/ci_build.sh
2019-02-17 18:56:04 +01:00