Overview
Comment: | Updated nightly builds to start from clean source every Wednesday |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | f1179eeee0701fc3985a9f0c374cc43705d58e30 |
User & Date: | rkeene on 2010-11-03 14:02:03 |
Other Links: | manifest | tags |
Context
2010-11-11
| ||
17:16 | Added workaround for building bug in Tk on FreeBSD check-in: 612f995831 user: rkeene tags: trunk | |
2010-11-03
| ||
14:02 | Updated nightly builds to start from clean source every Wednesday check-in: f1179eeee0 user: rkeene tags: trunk | |
2010-10-21
| ||
13:00 |
KitCreator 0.5.3
Removed version control tag from release version check-in: 9ff996f870 user: rkeene tags: trunk, 0.5.3 | |
Changes
Modified build/test/do-nightly-tests-and-publish from [0b292f2a4f] to [5c58eff196].
10 10 export KITCREATORDIR WEBROOTDIR 11 11 12 12 cd "${KITCREATORDIR}" || exit 1 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 + 18 +# On Wednesday, do a distclean to force redownloading everything (mainly 19 +# for CVS Head) and force a rebuild to ensure up-to-date build status 20 +if [ "$(date '+%u')" = "3" ]; then 21 + ./kitcreator distclean || exit 1 22 + 23 + touch "${KITCREATORDIR}/build/test/force_nightly" 24 +fi 17 25 18 26 if [ -d "${WEBROOTDIR}/${TESTNAME}" ]; then 19 27 # Don't re-run the tests if nothing has changed 20 28 if [ -f "${KITCREATORDIR}/build/test/force_nightly" ]; then 21 29 rm -f "${KITCREATORDIR}/build/test/force_nightly" 22 30 else 23 31 exit 0