Travis tweaks to find hpc output

This commit is contained in:
Greg Hale 2016-08-04 00:39:24 -04:00
parent f7cd708bc8
commit 36e8eed84e
2 changed files with 10 additions and 2 deletions

View File

@ -30,7 +30,7 @@ git checkout $TARGET_BRANCH || git checkout --orphan $TARGET_BRANCH
cd ..
# Clean out existing contents
rm -rf $OUT/**/* || exit 0
rm -rf $OUT/* || exit 0
# Run our compile script
doCompile

View File

@ -4,7 +4,7 @@ set -e
# All directory variables relative to project root
# DIR=dist-newstyle/hpc
DIR=dist/hpc
DIR=./dist/hpc
#SUITE=./dist-newstyle/build/servant-reflex-0.2/build/testsuite/testsuite
SUITE=./dist/build/testsuite/testsuite
@ -40,8 +40,16 @@ for m in $EXCLUDES; do
done
# TODO - actually send results to /dev/null when hpc kinks are fully removed
echo "Call hpc:"
echo hpc markup $EXCL --destdir=$DIR testsuite # >/dev/null 2>&1
hpc markup $EXCL --destdir=$DIR testsuite # >/dev/null 2>&1
echo "ls $DIR:"
ls $DIR
echo "ls:"
ls
cp -r $DIR out/
cat <<EOF