hyperion.ng/.travis.yml

61 lines
1.3 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)"
- <<: *linux
name: "i386 (x86)"
env:
- DOCKER_TAG=i386
- DOCKER_NAME="Debian Stretch (i386)"
- <<: *linux
name: "ARMv6hf (Raspberry Pi v1 & ZERO)"
env:
- DOCKER_TAG=armv6hf
2019-02-17 19:52:01 +01:00
- DOCKER_NAME="Debian Stretch (Raspberry Pi v1 & ZERO)"
2019-02-17 19:47:30 +01:00
- PLATFORM="rpi"
2019-02-17 18:56:04 +01:00
- <<: *linux
name: "ARMv7hf (Raspberry Pi 2 & 3)"
env:
- DOCKER_TAG=armv7hf
- DOCKER_NAME="Debian Stretch (Raspberry Pi 2 & 3)"
2019-02-17 19:47:30 +01:00
- PLATFORM="rpi"
2019-02-17 18:56:04 +01:00
- <<: *linux
name: "ARMv8 (Generic AARCH64)"
env:
- DOCKER_TAG=aarch64
- DOCKER_NAME="ARMv8 (Generic AARCH64)"
- PLATFORM="amlogic"
- <<: *osx
osx_image: xcode8.3
name: "macOS 10.12 (Xcode 8.3.3)"
env:
- HOMEBREW_CACHE=$HOME/brew-cache
script:
- ./.ci/ci_build.sh
after_success:
- ./.ci/ci_deploy.sh
2019-02-17 18:56:04 +01:00