Files
ci-scripts/.travis.yml.example-mini
Ralph Lange 1936f89931 Merge pull request #2 from mark0n/use-xenial-for-examples
Let's use a bit newer distro with newer compilers and libraries
by default. I think with over 3 years xenial is old enough.
2019-06-02 16:31:44 +02:00

29 lines
476 B
Plaintext

# .travis.xml for use with EPICS Base ci-scripts
# (see: https://github.com/epics-base/ci-scripts)
language: cpp
compiler: gcc
dist: xenial
# Minimal set of packages needed to compile EPICS Base
addons:
apt:
packages:
- libreadline6-dev
- libncurses5-dev
- perl
install:
- ./.ci/travis-prepare.sh
script:
- ./.ci/travis-build.sh
# Build using default gcc for Base 7.0 and 3.15
matrix:
include:
- env: BASE_BRANCH=7.0
- env: BASE_BRANCH=3.15