You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
2.7 KiB
102 lines
2.7 KiB
sudo: required
|
|
language: c
|
|
services:
|
|
- docker
|
|
|
|
matrix:
|
|
include:
|
|
# 32 bit build
|
|
- os: linux
|
|
env: DISTRO=debian:stable VARIANT=i386
|
|
compiler: gcc
|
|
|
|
# cross compilation builds
|
|
- os: linux
|
|
env: DISTRO=debian:stable VARIANT=cross-compile.ppc64le TREE="out"
|
|
compiler: powerpc64le-linux-gnu-gcc
|
|
|
|
- os: linux
|
|
env: DISTRO=debian:stable VARIANT=cross-compile.aarch64 TREE="out"
|
|
compiler: aarch64-linux-gnu-gcc
|
|
|
|
# musl (native)
|
|
- os: linux
|
|
# Message: WARNING: xsltproc: cannot process http://docbook.sourceforge.net/release/xsl-ns/current/manpages/docbook.xsl
|
|
# doc/meson.build:70:1: ERROR: Problem encountered: Docs cannot be built: xsltproc does not work correctly
|
|
env: DISTRO=alpine:latest
|
|
compiler: gcc
|
|
|
|
# build with minimal dependencies
|
|
- os: linux
|
|
env: DISTRO=debian:stable VARIANT=minimal TREE="out"
|
|
compiler: clang
|
|
|
|
# native non-intel
|
|
- os: linux
|
|
arch: ppc64le
|
|
compiler: gcc
|
|
env: DISTRO=debian:testing
|
|
|
|
- os: linux
|
|
arch: s390x
|
|
compiler: gcc
|
|
env: DISTRO=debian:stable
|
|
|
|
# other builds
|
|
- os: linux
|
|
env: DISTRO=fedora:latest
|
|
compiler: clang
|
|
|
|
- os: linux
|
|
env: DISTRO=centos:6 TREE="out"
|
|
compiler: gcc
|
|
|
|
- os: linux
|
|
env: DISTRO=debian:testing
|
|
compiler: gcc
|
|
|
|
- os: linux
|
|
env: DISTRO=debian:oldstable
|
|
compiler: clang
|
|
|
|
- os: linux
|
|
env: DISTRO=opensuse/tumbleweed
|
|
compiler: gcc
|
|
|
|
- os: linux
|
|
env: DISTRO=opensuse/leap
|
|
compiler: gcc
|
|
|
|
- os: linux
|
|
env: DISTRO=debian:oldstable
|
|
compiler: gcc
|
|
|
|
- os: linux
|
|
env: DISTRO=debian:testing
|
|
compiler: clang
|
|
|
|
- os: linux
|
|
env: DISTRO=ubuntu:latest TREE="out"
|
|
compiler: gcc
|
|
|
|
- os: linux
|
|
env: DISTRO=ubuntu:xenial
|
|
compiler: gcc
|
|
|
|
- os: linux
|
|
env: DISTRO=centos:latest
|
|
compiler: gcc
|
|
|
|
before_install:
|
|
- DIR="/usr/src/ltp"
|
|
- printf "FROM $DISTRO\nRUN mkdir -p $DIR\nWORKDIR $DIR\nCOPY . $DIR\n" > Dockerfile
|
|
- echo "cat Dockerfile"; cat Dockerfile; echo "=====" # FIXME: debug
|
|
- docker build -t ltp .
|
|
|
|
script:
|
|
- INSTALL="${DISTRO%%:*}"
|
|
- INSTALL="${INSTALL%%/*}"
|
|
- if [ ! "$TREE" ]; then TREE="in"; fi
|
|
- case $VARIANT in cross-compile*) BUILD="cross";; i386) BUILD="32";; *) BUILD="native";; esac
|
|
- docker run -t ltp /bin/sh -c "cd travis && ./$INSTALL.sh && if [ \"$VARIANT\" ]; then ./$INSTALL.$VARIANT.sh; fi && ../build.sh -o $TREE -t $BUILD -c $CC"
|