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: |
eb2ffb8305cb21879295574893ab3899 |
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 2 3 4 5 6 7 8 9 | This will build a Tclkit named "tclkit-<version>" or a KitDLL named "libtclkit<version>.so". --------------- Using This Tool --------------- Usage: kitcreator [{<version> | cvs_<cvsTag> | clean | distclean}] [<configure_options...>] |
︙ | ︙ |
Modified build/test/do-nightly-tests-and-publish from [7b67cc45a0] to [75aae2a48d].
︙ | ︙ | |||
15 16 17 18 19 20 21 | TESTNAME="fossil_${FOSSIL_CHANGE}" export FOSSIL_CHANGE TESTNAME # On Wednesday, do a distclean to force redownloading everything (mainly # for CVS Head) and force a rebuild to ensure up-to-date build status if [ "$(date '+%u')" = "3" ]; then ./kitcreator distclean || exit 1 | | < < < | | < < < | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | TESTNAME="fossil_${FOSSIL_CHANGE}" export FOSSIL_CHANGE TESTNAME # On Wednesday, do a distclean to force redownloading everything (mainly # for CVS Head) and force a rebuild to ensure up-to-date build status if [ "$(date '+%u')" = "3" ]; then ./kitcreator distclean || exit 1 else if [ -d "${WEBROOTDIR}/${TESTNAME}" ]; then # Don't re-run the tests if nothing has changed exit 0 fi fi cd build/test || exit 1 if [ ! -x test -o ! -x publish-tests ]; then |
︙ | ︙ |