X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=misc%2Ftools%2Fxonotic-map-compiler-autobuild;h=0cfb057922ff7401190bd2392bf36e4259c935e6;hb=c19fb6c4f56c5156406cbffd3873417c073d1283;hp=0499f837792e070705dca5323a9219463b56f855;hpb=1f7b827655a61d64a62b40b7cc741cb3ba8cea9f;p=xonotic%2Fxonotic.git diff --git a/misc/tools/xonotic-map-compiler-autobuild b/misc/tools/xonotic-map-compiler-autobuild index 0499f837..0cfb0579 100755 --- a/misc/tools/xonotic-map-compiler-autobuild +++ b/misc/tools/xonotic-map-compiler-autobuild @@ -3,7 +3,7 @@ set -e bspdir="$PWD/data" -url_http=http://beta.xonotic.org/autobuild-bsp/ +url_http=https://beta.xonotic.org/autobuild-bsp/ url_ssh=xonotic-beta:autobuild-bsp/ build_cachedir="$HOME/xonotic-map-compiler.cache/" screenshot_cachedir="$HOME/xonotic-map-screenshot.cache/" @@ -164,7 +164,8 @@ buildthemap() blobhash=$4 commithash=$5 if lwp-request -m HEAD "$url$M-$blobhash.pk3"; then - continue + # already compiled + return fi git reset --hard @@ -184,36 +185,21 @@ buildthemap() is_nosrgb=false fi allow_build=true - case "$M" in - afterslime|dance|drain|glowplant|leave_em_behind|newtonian-nightmare|nexballarena|oilrig|red-planet|runningmanctf|runningman|space-elevator|stormkeep|techassault|xoylent) - if $is_nosrgb; then + if $is_nosrgb; then + case "$REFNAME" in + master|refs/heads/master|origin/master|refs/remotes/origin/master) if [ -n "$IRCSPAM" ]; then - echo "8NOTE: map $M still uses -nosRGB. This should eventually get fixed." | $IRCSPAM || true + echo "4ERROR: map $M uses -nosRGB. This is not acceptable in master. Please fix." | $IRCSPAM || true fi - else + allow_build=false + ;; + *) if [ -n "$IRCSPAM" ]; then - echo "9CONGRATULATIONS: map $M does not use -nosRGB any more. Please remove the map name from the list in xonotic-map-compiler-autobuild once this is merged to master." | $IRCSPAM || true + echo "4WARNING: map $M uses -nosRGB. This is not acceptable in master. Please fix." | $IRCSPAM || true fi - fi - ;; - *) - if $is_nosrgb; then - case "$REFNAME" in - master|refs/heads/master|origin/master|refs/remotes/origin/master) - if [ -n "$IRCSPAM" ]; then - echo "4ERROR: map $M uses -nosRGB. This is not acceptable in master. Please fix." | $IRCSPAM || true - fi - allow_build=false - ;; - *) - if [ -n "$IRCSPAM" ]; then - echo "4WARNING: map $M uses -nosRGB. This is not acceptable in master. Please fix." | $IRCSPAM || true - fi - ;; - esac - fi - ;; - esac + ;; + esac + fi set +e $allow_build && ( @@ -252,13 +238,19 @@ screenshotthemap() M=$3 blobhash=$4 commithash=$5 + if ! [ -f "$bspdir/$M-$blobhash.pk3" ]; then + # not downloaded yet + return + fi + if lwp-request -m HEAD "$url$M-$blobhash/$M-000000.jpg"; then - continue + # already done + return fi if ! unzip -l "$bspdir/$M-$blobhash.pk3" "maps/$M.bsp"; then # no BSP file - continue + return fi rm -rf ~/.xonotic/data @@ -292,6 +284,9 @@ screenshotthemap() rsync -vaSHP "$M-$blobhash" "$url_ssh" rsync -vaSHP "$M" "$url_ssh""latest/" if [ -n "$IRCSPAM" ]; then + # It takes about 5 minutes for the server to update. + sleep 360 # Cut it one more minute of slack. + $IRCSPAM < "$M-$blobhash/$M.ircss" || true fi if [ -n "$BUILD_ONE" ]; then @@ -313,17 +308,15 @@ getthemap() fi fi if ! wget -c -O "$bspdir/$M-$blobhash.pk3" "$url$M-$blobhash.pk3"; then - if ! curl -o "$bspdir/$M-$blobhash.pk3" "$url$M-$blobhash.pk3"; then + if ! curl -Lo "$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" - getthemap_fail=true return 0 fi 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" - getthemap_fail=true return 0 fi } @@ -388,13 +381,17 @@ case "$1" in git clean -xfd git checkout -f "$HASH" + getthemap_fail=false rundownload + + allmaps "$HASH" screenshotthemap "$REFNAME" "$url_http" + if $getthemap_fail; then + # If any map fetch failed, we've skipped them and thus need to try again later. + # Note that we're not going to re-screenshot maps because of this as we'll check for uploaded screenshots first. continue fi - allmaps "$HASH" screenshotthemap "$REFNAME" "$url_http" - touch "$screenshot_cachedir/$HASH" done git checkout -f master