Differences From Artifact [091622edc7]:
- Executable file
build/test/publish-tests
— part of check-in
[2a8304f779]
at
2010-09-26 04:46:15
on branch trunk
— Added script to publish test results
Added new "parray" test (user: rkeene, size: 1708) [annotate] [blame] [check-ins using]
To Artifact [db5cad6f63]:
- Executable file
build/test/publish-tests
— part of check-in
[fdb515dc70]
at
2010-09-26 04:46:40
on branch trunk
— Added StaticTk builds
Updated to move failed builds into failed directory (user: rkeene, size: 2040) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
8 9 10 11 12 13 14 | exit 1 fi rm -rf "${WEBDIR}" mkdir -p "${WEBDIR}" || exit 1 | | | > > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | exit 1 fi rm -rf "${WEBDIR}" mkdir -p "${WEBDIR}" || exit 1 cp -r kits/* "${WEBDIR}" ln -s ../index.ttml "${WEBDIR}/" >/dev/null 2>/dev/null for file in "${WEBDIR}"/*; do if [ -d "${file}" ]; then continue fi if echo "${file}" | egrep '\.(log|desc|ttml)$' >/dev/null; then continue fi descfile="${file}.desc" shortfile="$(basename "${file}")" desc="" |
︙ | ︙ | |||
50 51 52 53 54 55 56 57 58 59 60 61 62 63 | ;; notk-*) if echo "${desc}" | grep -i support >/dev/null; then desc="${desc} and" fi desc="${desc} without Tk" ;; zip-*) desc="${desc} using ZIP for Kit storage" ;; *) echo "Unknown part (\"${parts}\"), skipping \"${shortfile}\"" >&2 break ;; | > > > > > > | 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | ;; notk-*) if echo "${desc}" | grep -i support >/dev/null; then desc="${desc} and" fi desc="${desc} without Tk" ;; statictk-*) if echo "${desc}" | grep -i support >/dev/null; then desc="${desc} and" fi desc="${desc} with Tk linked directly to the kit" ;; zip-*) desc="${desc} using ZIP for Kit storage" ;; *) echo "Unknown part (\"${parts}\"), skipping \"${shortfile}\"" >&2 break ;; |
︙ | ︙ | |||
84 85 86 87 88 89 90 | ;; esac desc="is a Tclkit for Tcl ${tclversion}${desc}" echo "${desc}" > "${descfile}" done | > > > > > > | 94 95 96 97 98 99 100 101 102 103 104 105 106 | ;; esac desc="is a Tclkit for Tcl ${tclversion}${desc}" echo "${desc}" > "${descfile}" done rmdir "${WEBDIR}/failed" >/dev/null 2>/dev/null ln -s ../index.ttml "${WEBDIR}/failed/" >/dev/null 2>/dev/null exit 0 |