test inspect

This commit is contained in:
Michael Davidsaver
2019-10-20 20:30:42 -07:00
parent e0b1cee6f4
commit 2e2380edb3
2 changed files with 14 additions and 0 deletions
+1
View File
@@ -21,6 +21,7 @@ install:
- ./travis-libevent.sh
script:
- ./travis-inspect.sh
- ./withenv.sh ./.ci/travis-build.sh
# If you need to do more during install and build,
+13
View File
@@ -0,0 +1,13 @@
#!/bin/sh
set -x
if [ "$TRAVIS_OS_NAME" = "windows" ]
then
# replace /c/Users/travis/.source/epics-base from travis-build.sh
cat <<EOF >configure/RELEASE.local
EPICS_BASE=C:\Users\travis\.source\epics-base
EOF
fi
exit 0