Overview
Comment: | Updated to allow force rebuilds of nightly tests |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | ad21154bd8e6aba92f70df339604fa4e84447423 |
User & Date: | rkeene on 2010-10-12 01:49:42 |
Other Links: | manifest | tags |
Context
2010-10-12
| ||
15:56 | Added patch for Tcl 8.4.19 to compile with newer versions of GCC check-in: 4f2db7cae0 user: rkeene tags: trunk | |
01:49 | Updated to allow force rebuilds of nightly tests check-in: ad21154bd8 user: rkeene tags: trunk | |
2010-10-08
| ||
15:18 | Updated LICENSE with KitDLL files copied from KitSH check-in: fb713458b7 user: rkeene tags: trunk | |
Changes
Modified build/test/do-nightly-tests-and-publish from [077e641ed0] to [0b292f2a4f].
13 13 14 14 FOSSIL_CHANGE="$(fossil timeline -n 1 -t ci | grep '^[0-9:]* \[' | sed 's@^[0-9:]* \[\([0-9a-f]*\)\].*$@\1@')" 15 15 TESTNAME="fossil_${FOSSIL_CHANGE}" 16 16 export FOSSIL_CHANGE TESTNAME 17 17 18 18 if [ -d "${WEBROOTDIR}/${TESTNAME}" ]; then 19 19 # Don't re-run the tests if nothing has changed 20 - exit 0 20 + if [ -f "${KITCREATORDIR}/build/test/force_nightly" ]; then 21 + rm -f "${KITCREATORDIR}/build/test/force_nightly" 22 + else 23 + exit 0 24 + fi 21 25 fi 22 26 23 27 cd build/test || exit 1 24 28 25 29 if [ ! -x test -o ! -x publish-tests ]; then 26 30 echo 'Missing scripts, aborting.' >&2 27 31