Overview
Comment: | Updated to properly deal with nightly builds on Wednesdays doing a full rebuild |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | eb2ffb8305cb21879295574893ab3899abc70735 |
User & Date: | rkeene on 2011-03-03 12:13:53 |
Other Links: | manifest | tags |
Context
2011-03-03
| ||
16:02 | Renamed "arm" to "mipsel", which is more correct check-in: 87adc4a193 user: rkeene tags: trunk | |
12:13 | Updated to properly deal with nightly builds on Wednesdays doing a full rebuild check-in: eb2ffb8305 user: rkeene tags: trunk | |
12:00 | Updated to create symlink named "nightly" to point to the nightly test check-in: 82d42d8faf user: rkeene tags: trunk | |
Changes
Modified README from [b320dd82ca] to [8f0b451b52].
1 -This will build a Tclkit named "tclkit-<version>". 1 +This will build a Tclkit named "tclkit-<version>" or a KitDLL named 2 +"libtclkit<version>.so". 2 3 3 4 --------------- 4 5 Using This Tool 5 6 --------------- 6 7 Usage: 7 8 kitcreator [{<version> | cvs_<cvsTag> | clean | distclean}] 8 9 [<configure_options...>]
Modified build/test/do-nightly-tests-and-publish from [7b67cc45a0] to [75aae2a48d].
15 15 TESTNAME="fossil_${FOSSIL_CHANGE}" 16 16 export FOSSIL_CHANGE TESTNAME 17 17 18 18 # On Wednesday, do a distclean to force redownloading everything (mainly 19 19 # for CVS Head) and force a rebuild to ensure up-to-date build status 20 20 if [ "$(date '+%u')" = "3" ]; then 21 21 ./kitcreator distclean || exit 1 22 - 23 - touch "${KITCREATORDIR}/build/test/force_nightly" 24 -fi 25 - 22 +else 26 23 if [ -d "${WEBROOTDIR}/${TESTNAME}" ]; then 27 24 # Don't re-run the tests if nothing has changed 28 - if [ -f "${KITCREATORDIR}/build/test/force_nightly" ]; then 29 - rm -f "${KITCREATORDIR}/build/test/force_nightly" 30 - else 31 25 exit 0 32 26 fi 33 27 fi 34 28 35 29 cd build/test || exit 1 36 30 37 31 if [ ! -x test -o ! -x publish-tests ]; then