Overview
| Comment: | Updated to create symlink named "nightly" to point to the nightly test |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
82d42d8faf5af79a349ed489fc0921bd |
| User & Date: | rkeene on 2011-03-03 12:00:04 |
| Other Links: | manifest | tags |
Context
|
2011-03-03
| ||
| 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 | |
| 11:56 | Added link to other release builds check-in: b48e2da571 user: rkeene tags: trunk | |
Changes
Modified build/test/do-nightly-tests-and-publish from [5c58eff196] to [7b67cc45a0].
| ︙ | ︙ | |||
54 55 56 57 58 59 60 61 62 63 64 |
# Clean old auto-generated published results
rm -rf "${WEBROOTDIR}"/svn_r*/ "${WEBROOTDIR}"/fossil_*/
# Publish New Results
./publish-tests "${TESTNAME}"
# Clean
rm -f '__AUTO_TESTS_RUNNING__'
exit 0
| > > > > | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
# Clean old auto-generated published results
rm -rf "${WEBROOTDIR}"/svn_r*/ "${WEBROOTDIR}"/fossil_*/
# Publish New Results
./publish-tests "${TESTNAME}"
# Create nightly symlink
rm -f "${WEBROOTDIR}/nightly"
ln -s "${TESTNAME}" "${WEBROOTDIR}/nightly"
# Clean
rm -f '__AUTO_TESTS_RUNNING__'
exit 0
|