timewarrior/.travis.yml
Thomas Lauf 985717e9c8 Deactivate Gentoo Docker image due to its high maintenance costs
- See issue #380 for details

Signed-off-by: Thomas Lauf <thomas.lauf@tngtech.com>
2020-09-04 10:43:13 +02:00

67 lines
1.7 KiB
YAML

sudo: required
language: generic
matrix:
include:
# Deactivated, see https://github.com/GothenburgBitFactory/timewarrior/issues/380
# - name: "Gentoo (latest)"
# os: linux
# env: CONTAINER=gentoo
# services: docker
- name: "Centos 7"
os: linux
env: CONTAINER=centos7
services: docker
- name: "Centos 8"
os: linux
env: CONTAINER=centos8
services: docker
- name: "Fedora 31"
os: linux
env: CONTAINER=fedora31
services: docker
- name: "Fedora 32"
os: linux
env: CONTAINER=fedora32
services: docker
- name: "Debian Stable"
os: linux
env: CONTAINER=debianstable
services: docker
- name: "Debian Testing"
os: linux
env: CONTAINER=debiantesting
services: docker
- name: "Ubuntu 16.04"
os: linux
env: CONTAINER=ubuntu1604
services: docker
- name: "Ubuntu 18.04"
os: linux
env: CONTAINER=ubuntu1804
services: docker
- name: "Ubuntu 20.04"
os: linux
env: CONTAINER=ubuntu2004
services: docker
- name: "OpenSUSE 15.0"
os: linux
env: CONTAINER=opensuse1500
services: docker
- name: "Archlinux"
os: linux
env: CONTAINER=archlinux
services: docker
- name: "macOS 10.13"
os: osx
osx_image: xcode9.4
env: CONTAINER=osx
- name: "macOS 10.14"
os: osx
osx_image: xcode10.3
env: CONTAINER=osx
install:
# Build the docker container
- pushd $TRAVIS_BUILD_DIR
- if [[ $CONTAINER != "osx" ]]; then docker-compose build test-$CONTAINER ; fi
script:
- if [[ $CONTAINER != "osx" ]]; then docker-compose run test-$CONTAINER; else bash test/scripts/test_osx.sh ; fi