Skip to content

Commit edc568f

Browse files
committed
ENH: Diagnostics for cache.
1 parent 435fd4c commit edc568f

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.travis.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ compiler:
2121
env:
2222
global:
2323
- PROJ_SOURCE_DIR=${TRAVIS_BUILD_DIR}
24-
- PROJ_BUILD_DIR=${HOME}/build
24+
- PROJ_BUILD_DIR=${HOME}/BT-11
2525
- PROJ_INSTALL_DIR=${HOME}/install
2626
- BUILD_TYPE=Release
2727

@@ -97,6 +97,11 @@ before_script:
9797
(md5sum -c ${MD5_FILE} 2>/dev/null || :) | awk '{if ($NF == "OK") print substr($0, 1, length($0)-4)}' | xargs touch -d "${OLDEST_DATE}"
9898
fi
9999
find ${PROJ_SOURCE_DIR} \( -type d -name .git \) -prune -o -type f -print0 | xargs -0 md5sum > ${MD5_FILE}
100+
- echo "SOURCES:"
101+
- ls -alhrtd ${PROJ_SOURCE_DIR}/*
102+
- echo "BUILD:"
103+
- ls -alhrtd ${PROJ_BUILD_DIR}/*
104+
- head ${MD5_FILE}
100105

101106
matrix:
102107
# allow_failures:
@@ -143,12 +148,15 @@ matrix:
143148
-DUSE_ReferenceAtlas:BOOL=OFF
144149
${PROJ_SOURCE_DIR}
145150
- cd ${PROJ_BUILD_DIR}
151+
- ls -alrthd ${PROJ_BUILD_DIR}/*
146152
- ninja
147153
- cd ${PROJ_BUILD_DIR}/BRAINSTools-${BUILD_TYPE}-EP${BUILD_TYPE}-build
154+
- ls -alrthd ${PROJ_BUILD_DIR}/BRAINSTools-${BUILD_TYPE}-EP${BUILD_TYPE}-build/*
148155
- ctest -D ExperimentalStart
149156
- ctest -D ExperimentalConfigure
150157
- ctest -D ExperimentalBuild -j2
151-
- travis_wait 20 ctest -D ExperimentalTest --schedule-random -j2 --output-on-failure
158+
# - travis_wait 20 ctest -D ExperimentalTest --schedule-random -j2 --output-on-failure
159+
- echo "NO TESTS RUN"
152160
- ctest -D ExperimentalSubmit
153161
# - travis_wait 20 ninja test
154162
# Valgrind has too many false positives from the python wrapping. Need a good suppression file

0 commit comments

Comments
 (0)