X-Git-Url: http://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=blobdiff_plain;f=misc%2Ftools%2Fxonotic-map-compiler-autobuild;h=8f4d6a78e4f3874123c25ffbdb452ccba81cba7b;hp=7541885e0a904593e56a235307d163873191c761;hb=8bfb119d5e7683fad2d1f49cffd99783a8591f45;hpb=d85a9b84b21a1e276c49a52802b5f03bd2e9661f diff --git a/misc/tools/xonotic-map-compiler-autobuild b/misc/tools/xonotic-map-compiler-autobuild index 7541885e..8f4d6a78 100755 --- a/misc/tools/xonotic-map-compiler-autobuild +++ b/misc/tools/xonotic-map-compiler-autobuild @@ -2,7 +2,7 @@ set -e -bspdir="$PWD/bspfiles" +bspdir="$PWD/data" url=http://141.2.16.23/~xonotic/bsp-autobuilds/ bspoutdir="$HOME/public_html/bsp-autobuilds/" @@ -23,12 +23,28 @@ allmaps() done } +pre2spam() +{ + map=$1 + url=$2 + branch=$3 + hash=$4 + + branch=${branch##refs/heads/} + branch=${branch##refs/remotes/} + branch=${branch##origin/} + hash=`echo "$hash" | cut -c 1-7` + + echo "[$branch $hash] starting map compile of $map" +} + log2spam() { map=$1 url=$2 branch=$3 hash=$4 + status=$5 branch=${branch##refs/heads/} branch=${branch##refs/remotes/} @@ -40,6 +56,9 @@ log2spam() s_leaked= s_error= + if [ "$status" -ne 0 ]; then + s_error="exited with status $status" + fi while IFS= read -r L; do case "$L" in *\ seconds\ elapsed) @@ -68,9 +87,9 @@ log2spam() s_failshaders=`echo "$s_failshaders" | sed "s, textures/, ,g"` s_failshaders=${s_failshaders# } if [ -n "$s_error" ]; then - echo -n "[$branch] 4failed" + echo -n "[$branch $hash] 4failed" else - echo -n "[$branch] finished" + echo -n "[$branch $hash] finished" fi echo -n " map compile of $map ($url): $s_time sec" if [ -n "$s_samplesize" ]; then @@ -103,14 +122,21 @@ buildthemap() if [ -f "$bspdir/$M-$blobhash.pk3" ]; then continue fi + if [ -n "$IRCSPAM" ]; then + pre2spam "$M" "$url$M-$blobhash.pk3" "$REFNAME" "$HASH" | $IRCSPAM + fi ( cd maps - ../../../misc/tools/xonotic-map-compiler "$M" `head -n 1 "$M.map.options"` 2>&1 | tee "$M.log" + ../../../misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` 2>&1 | tee "$M.log" ) - zip -9r "$bspdir/$M-$blobhash.pk3" "maps/$M.bsp" "maps/$M.log" "maps/$M/" "maps/$M.lin" "gfx/${M}_mini.tga" + status=$? + if [ -n "$IRCSPAM" ]; then + cat "maps/$M.log" | log2spam "$M" "$url$M-$blobhash.pk3" "$REFNAME" "$HASH" "$status" > "maps/$M.irc" + fi + zip -9r "$bspdir/$M-$blobhash.pk3" "maps/$M.bsp" "maps/$M.log" "maps/$M.irc" "maps/$M/" "maps/$M.lin" "gfx/${M}_mini.tga" ln -snf "../$M-$blobhash.pk3" "$bspdir/latest/$M.pk3" # from ALL branches, so beware! if [ -n "$IRCSPAM" ]; then - cat "maps/$M.log" | log2spam "$M" "$url/$M-$blobhash.pk3" "$REFNAME" "$HASH" | $IRCSPAM + $IRCSPAM < "maps/$M.irc" fi } @@ -127,12 +153,12 @@ getthemap() if ! wget -O "$bspdir/$M-$blobhash.pk3" "$url$M-$blobhash.pk3"; then rm -f "$bspdir/$M-$blobhash.pk3" echo "WARNING: could not download $url$M-$blobhash.pk3, maybe not ready yet" - return 1 + return 0 fi if ! unzip -l "$bspdir/$M-$blobhash.pk3"; then rm -f "$bspdir/$M-$blobhash.pk3" echo "WARNING: could not download $url$M-$blobhash.pk3, invalid zip file" - return 1 + return 0 fi } @@ -150,9 +176,8 @@ case "$1" in git checkout master ;; download) - rm -rf "$bspdir.old" - mv "$bspdir" "$bspdir.old" || true - mkdir -p "$bspdir" + mkdir -p "$bspdir" "$bspdir.old" + mv "$bspdir"/*-????????????????????????????????????????-????????????????????????????????????????.pk3 "$bspdir.old"/ || true cd data/xonotic-maps.pk3dir allmaps getthemap "$url" "$bspdir.old" "$bspdir" echo "List of maps that got deleted (if any) and currently are in $bspdir.old:" @@ -162,9 +187,9 @@ case "$1" in mkdir -p "$bspdir" cd "$bspdir" rm -f *-????????????????????????????????????????-????????????????????????????????????????.pk3 - wget -r -l1 -A "*.pk3" -N --no-parent --no-directories "$url/latest" + wget -r -l1 -A "*.pk3" -N --no-parent --no-directories "$url""latest" ;; log2spam-test) - log2spam "mapname" "http://mapurl" "branch" "commit" + log2spam "mapname" "http://mapurl" "branch" "commit" "0" ;; esac