138 lines
3.0 KiB
Plaintext
138 lines
3.0 KiB
Plaintext
# .travis.yml for use with EPICS Base ci-scripts
|
|
# (see: https://github.com/epics-base/ci-scripts)
|
|
|
|
# This is YAML - indentation levels are crucial
|
|
|
|
language: cpp
|
|
compiler: gcc
|
|
dist: bionic
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache
|
|
|
|
env:
|
|
global:
|
|
- SETUP_PATH=.ci-local:.ci
|
|
# for the sequencer on Windows
|
|
- CHOCO=re2c
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
# for all EPICS builds
|
|
- libreadline6-dev
|
|
- libncurses5-dev
|
|
- perl
|
|
# for clang compiler
|
|
- clang
|
|
# for mingw builds (32bit and 64bit)
|
|
- g++-mingw-w64-i686
|
|
- g++-mingw-w64-x86-64
|
|
# for RTEMS cross builds
|
|
- qemu-system-x86
|
|
# for .zip/.7z archive hooks
|
|
- p7zip-full
|
|
homebrew:
|
|
packages:
|
|
# for the sequencer
|
|
- re2c
|
|
# for .zip/.7z archive hooks
|
|
- p7zip
|
|
|
|
install:
|
|
- python .ci/cue.py prepare
|
|
|
|
script:
|
|
- python .ci/cue.py build
|
|
- python .ci/cue.py test
|
|
- python .ci/cue.py test-results
|
|
|
|
# If you need to do more during install and build,
|
|
# add a local directory to your module and do e.g.
|
|
# - ./.ci-local/travis/install-extras.sh
|
|
|
|
# Define build jobs
|
|
|
|
# Well-known variables to use
|
|
# SET source setup file
|
|
# ADD_MODULES extra modules (for a specific job)
|
|
# BCFG build configuration (static/debug/static-debug;
|
|
# default: shared-optimized)
|
|
# TEST set to NO to skip running the tests (default: YES)
|
|
# VV set to make build scripts verbose (default: unset)
|
|
# EXTRA content will be added to make command line
|
|
# EXTRA1..5 more additional arguments for the make command
|
|
# (one argument per variable)
|
|
|
|
# Usually from setup files, but may be specified or overridden
|
|
# on a job line
|
|
# MODULES list of dependency modules
|
|
# BASE branch or release tag name of the EPICS Base to use
|
|
# <MODULE> branch or release tag for a specific module
|
|
# ... see README for setup file syntax description
|
|
|
|
jobs:
|
|
include:
|
|
|
|
# Different configurations of default gcc and clang
|
|
|
|
- env: BASE=7.0
|
|
|
|
- env: BASE=7.0
|
|
compiler: clang
|
|
|
|
- env: BASE=7.0
|
|
|
|
- env: BASE=7.0 EXTRA="CMD_CXXFLAGS=-std=c++11"
|
|
compiler: clang
|
|
|
|
# Trusty: compiler versions very close to RHEL 7
|
|
|
|
- env: BASE=7.0
|
|
dist: trusty
|
|
|
|
- env: BASE=7.0 EXTRA="CMD_CXXFLAGS=-std=c++11"
|
|
dist: trusty
|
|
|
|
# Cross-compilations to Windows using gcc/MinGW and WINE
|
|
|
|
- env: BASE=7.0 WINE=32 TEST=NO BCFG=static
|
|
|
|
- env: BASE=7.0 WINE=64 TEST=NO
|
|
|
|
# Cross-compilation to RTEMS
|
|
|
|
- env: BASE=7.0 RTEMS=4.10 APT=usrmerge
|
|
|
|
- env: BASE=7.0 RTEMS=4.9 APT=usrmerge
|
|
|
|
- env: BASE=7.0 RTEMS=5 RTEMS_TARGET=RTEMS-pc686-qemu
|
|
dist: focal
|
|
|
|
# Other gcc versions (added as an extra package)
|
|
|
|
- env: BASE=7.0
|
|
compiler: gcc-6
|
|
addons: { apt: { packages: ["g++-6"], sources: ["ubuntu-toolchain-r-test"] } }
|
|
|
|
- env: BASE=7.0
|
|
compiler: gcc-7
|
|
addons: { apt: { packages: ["g++-7"], sources: ["ubuntu-toolchain-r-test"] } }
|
|
|
|
# MacOS build
|
|
|
|
- env: BASE=7.0
|
|
os: osx
|
|
osx_image: xcode11.3
|
|
compiler: clang
|
|
|
|
# Windows builds
|
|
|
|
- env: BASE=7.0
|
|
os: windows
|
|
compiler: vs2017
|
|
|
|
- env: BASE=7.0
|
|
os: windows
|