diff --git a/.ci/travis-prepare.sh b/.ci/travis-prepare.sh index fd8c6fb4b..3a0f3b753 100644 --- a/.ci/travis-prepare.sh +++ b/.ci/travis-prepare.sh @@ -38,3 +38,9 @@ then fi cd "$CURDIR" + +cat <> epics-base/configure/CONFIG_SITE +USR_CPPFLAGS += $USR_CPPFLAGS +USR_CFLAGS += $USR_CFLAGS +USR_CXXFLAGS += $USR_CXXFLAGS +EOF diff --git a/.gitmodules b/.gitmodules index 1f5f23d11..6ee7d43d4 100644 --- a/.gitmodules +++ b/.gitmodules @@ -30,3 +30,11 @@ path = modules/pvDatabase url = https://github.com/epics-base/pvDatabaseCPP branch = master +[submodule "modules/pva2pva"] + path = modules/pva2pva + url = https://github.com/epics-base/pva2pva + branch = master +[submodule "modules/example"] + path = modules/example + url = https://github.com/epics-base/exampleCPP + branch = master diff --git a/.travis.yml b/.travis.yml index 78f21eedd..ba866bb9f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,16 +3,6 @@ dist: trusty language: c compiler: - gcc -env: - - CMPLR=gcc - - CMPLR=gcc EXTRA=CMD_CXXFLAGS=-std=c++11 - - CMPLR=gcc STATIC=YES - - CMPLR=clang - - CMPLR=clang STATIC=YES - - WINE=32 TEST=NO STATIC=YES - - WINE=32 TEST=NO STATIC=NO - - RTEMS=4.10 TEST=NO - - RTEMS=4.9 TEST=NO addons: apt: packages: @@ -28,5 +18,16 @@ addons: cache: directories: - $HOME/.cache -install: sh .ci/travis-prepare.sh