@@ -186,6 +186,9 @@ Setting `VV=1` in your `.travis.yml` configuration for a specific job
|
||||
will run the job with high verbosity, printing every command as it is being
|
||||
executed and switching the dependency builds to higher verbosity.
|
||||
|
||||
For local debugging, you may set `CACHEDIR` to change the location for the
|
||||
dependency builds. [default is `$HOME/.cache`]
|
||||
|
||||
## References: EPICS Modules Using ci-scripts
|
||||
|
||||
EPICS Base: [pvData](https://github.com/epics-base/pvDataCPP),
|
||||
|
||||
@@ -39,7 +39,8 @@ SETUP_DIRS=${SETUP_PATH//:/ }
|
||||
|
||||
SCRIPTDIR=$(dirname $(readlinkf $0))/travis
|
||||
CURDIR="$PWD"
|
||||
CACHEDIR="$HOME/.cache"
|
||||
CACHEDIR=${CACHEDIR:-${HOME}/.cache}
|
||||
[ -e ${CACHEDIR} ] || mkdir -p ${CACHEDIR}
|
||||
|
||||
echo "Testing contents of utils.sh"
|
||||
|
||||
|
||||
@@ -4,7 +4,7 @@ set -e
|
||||
# Set VV in .travis.yml to make scripts verbose
|
||||
[ "$VV" ] && set -x
|
||||
|
||||
CACHEDIR="$HOME/.cache"
|
||||
CACHEDIR=${CACHEDIR:-${HOME}/.cache}
|
||||
|
||||
eval $(grep "EPICS_BASE=" ${CACHEDIR}/RELEASE.local)
|
||||
export EPICS_BASE
|
||||
|
||||
@@ -21,7 +21,8 @@ readlinkf() { perl -MCwd -e 'print Cwd::abs_path shift' "$1"; }
|
||||
|
||||
SCRIPTDIR=$(dirname $(readlinkf $0))
|
||||
CURDIR="$PWD"
|
||||
CACHEDIR="$HOME/.cache"
|
||||
CACHEDIR=${CACHEDIR:-${HOME}/.cache}
|
||||
[ -e ${CACHEDIR} ] || mkdir -p ${CACHEDIR}
|
||||
|
||||
# source functions
|
||||
. $SCRIPTDIR/utils.sh
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
# Utility functions for Travis scripts in ci-scripts
|
||||
#
|
||||
# This file is sourced by the executable scripts
|
||||
# CACHEDIR must be defined and existing before calling these functions
|
||||
|
||||
# Portable version of 'sed -i' (that MacOS doesn't provide)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user