Add .travis.yml examples: full and mini

This commit is contained in:
Ralph Lange
2019-05-27 13:10:01 +02:00
parent fb95b95f4f
commit 8fb0106ced
2 changed files with 106 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
# .travis.xml for use with EPICS Base ci-scripts
# (see: https://github.com/epics-base/ci-scripts)
language: cpp
compiler: gcc
dist: trusty
# 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: BRBASE=7.0
- env: BRBASE=3.15