X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=blobdiff_plain;f=misc%2Ftools%2Fxonotic-map-compiler-autobuild;h=90a012325b829c864083833b20f87292821e07db;hp=672489ff3de62e899d1317c1ef9afbe3ca83c2b3;hb=2421c9cf61aeb5b9902d6f339a1f5e95e7378b9c;hpb=c0386f2fba6cd039ef865295b97beaa1f94b3ff9 diff --git a/misc/tools/xonotic-map-compiler-autobuild b/misc/tools/xonotic-map-compiler-autobuild index 672489ff..90a01232 100755 --- a/misc/tools/xonotic-map-compiler-autobuild +++ b/misc/tools/xonotic-map-compiler-autobuild @@ -3,11 +3,11 @@ set -e bspdir="$PWD/data" -url=http://141.2.16.23/~xonotic/bsp-autobuilds/ +url=http://beta.xonotic.org/autobuild-bsp/ +url_ssh=xonotic-beta:autobuild-bsp/ +cachedir="$HOME/xonotic-map-compiler.cache/" override="-bsp_timeout 900 -vis_timeout 3600 -light_timeout 14400 -minimap_timeout 900 -scale_timeout 900" -bspoutdir="$HOME/public_html/bsp-autobuilds/" - allmaps() { for F in maps/*.map.options; do @@ -116,28 +116,32 @@ buildthemap() REFNAME=$1 HASH=$2 url=$3 - bspdir=$4 - M=$5 - blobhash=$6 - if [ -f "$bspdir/$M-$blobhash.pk3" ]; then + M=$4 + blobhash=$5 + if HEAD "$url$M-$blobhash.pk3"; then continue fi if [ -n "$IRCSPAM" ]; then pre2spam "$M" "$url$M-$blobhash.pk3" "$REFNAME" "$HASH" | $IRCSPAM fi - t0=`date +$s` + t0=`date +%s` ( cd maps ../../../misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $override > "$M.log" ) - t1=`date +$s` + t1=`date +%s` dt=$(($t1 - $t0)) status=$? if [ -n "$IRCSPAM" ]; then cat "maps/$M.log" | log2spam "$M" "$url$M-$blobhash.pk3" "$REFNAME" "$HASH" "$status" "$dt" > "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! + zip -9r "$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" "$M.pk3" # from ALL branches, so beware! + cp "$M-$blobhash.pk3" "$M-full-$blobhash.pk3" + zip -9r "$M-full-$blobhash.pk3" `git diff --name-only --diff-filter=ACMRTUXB master...HEAD` || true + ln -snf "../$M-full-$blobhash.pk3" "$M-full.pk3" # from ALL branches, so beware! + rsync -vaSHP "$M-$blobhash.pk3" "$M-full-$blobhash.pk3" "$url_ssh" + rsync -vaSHP "$M.pk3" "$M-full.pk3" "$url_ssh""latest/" if [ -n "$IRCSPAM" ]; then $IRCSPAM < "maps/$M.irc" fi @@ -154,9 +158,11 @@ getthemap() continue fi 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 0 + if ! curl -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 0 + fi fi if ! unzip -l "$bspdir/$M-$blobhash.pk3"; then rm -f "$bspdir/$M-$blobhash.pk3" @@ -167,20 +173,26 @@ getthemap() case "$1" in build) - mkdir -p "$bspoutdir" - mkdir -p "$bspoutdir/latest" cd data/xonotic-maps.pk3dir git for-each-ref 'refs/remotes' | while read -r HASH TYPE REFNAME; do + if [ -f "$cachedir/$HASH" ]; then + continue + fi git reset --hard git clean -xfd - git checkout "$HASH" - allmaps buildthemap "$REFNAME" "$HASH" "$url" "$bspoutdir" + git checkout -f "$HASH" + allmaps buildthemap "$REFNAME" "$HASH" "$url" + touch "$cachedir/$HASH" done - git checkout master + git checkout -f master ;; download) mkdir -p "$bspdir" "$bspdir.old" - mv "$bspdir"/*-????????????????????????????????????????-????????????????????????????????????????.pk3 "$bspdir.old"/ || true + for b in "$bspdir"/*-????????????????????????????????????????-????????????????????????????????????????.pk3; do + if [ -e "$b" ]; then + mv "$b" "$bspdir.old"/ + fi + done 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:"