6 url_http=http://beta.xonotic.org/autobuild-bsp/
7 url_ssh=xonotic-beta:autobuild-bsp/
8 build_cachedir="$HOME/xonotic-map-compiler.cache/"
9 screenshot_cachedir="$HOME/xonotic-map-screenshot.cache/"
10 build_override="-bsp_timeout 1800 -vis_timeout 3600 -light_timeout 14400 -minimap_timeout 900 -scale_timeout 900"
11 screenshot_override="9 600 +g_ctf 1"
19 for F in `git show "${commithash}:maps/"`; do
28 blobhash=`git rev-parse --revs-only "${commithash}:maps/$M.map.options" || true`-`git rev-parse --revs-only "${commithash}:maps/$M.map" || true`
35 "$@" "$M" "$blobhash" "$commithash"
48 branch=${branch##refs/heads/}
49 branch=${branch##refs/remotes/}
50 branch=${branch##origin/}
51 hash=`echo "$hash" | cut -c 1-7`
53 echo "[$branch $hash] starting map compile of $map"
64 branch=${branch##refs/heads/}
65 branch=${branch##refs/remotes/}
66 branch=${branch##origin/}
67 hash=`echo "$hash" | cut -c 1-7`
71 if [ "$status" -ne 0 ]; then
72 s_error="exited with status $status"
75 if [ -n "$s_error" ]; then
76 echo "[$branch $hash]
\ 34screenshots of $map could not be made: $s_error"
78 echo "[$branch $hash] screenshots of $map are available on $url"
91 hash=`echo "$hash" | cut -c 1-7`
93 branch=${branch##refs/heads/}
94 branch=${branch##refs/remotes/}
95 branch=${branch##origin/}
102 if [ "$status" -ne 0 ]; then
103 s_error="exited with status $status"
105 while IFS= read -r L; do
107 WARNING:\ surface\ at\ *\ too\ large\ for\ desired\ samplesize*)
109 if [ -z "$s_samplesize" ] || [ "$s" -gt "$s_samplesize" ]; then
113 WARNING:\ Couldn\'t\ find\ image\ for\ shader\ textures/NULL)
116 WARNING:\ Couldn\'t\ find\ image\ for\ shader\ *)
117 s_failshaders="$s_failshaders ${L##* }"
120 if [ -z "$s_error" ]; then
124 '******* leaked *******')
127 '************ ERROR ************')
132 s_failshaders=`echo "$s_failshaders" | sed "s, textures/, ,g"`
133 s_failshaders=${s_failshaders# }
134 if [ -n "$s_error" ]; then
135 echo -n "[$branch $hash]
\ 34failed"
137 echo -n "[$branch $hash] finished"
139 echo -n " map compile of $map ($url): $time sec"
140 if [ -n "$s_samplesize" ]; then
141 echo -n ", FIX samplesize >= $s_samplesize"
143 if [ -n "$s_failshaders" ]; then
144 if [ -n "`echo "$s_failshaders" | cut -d ' ' -f 4-`" ]; then
145 s_failshaders="`echo "$s_failshaders" | cut -d ' ' -f 1-3`..."
147 echo -n ", FIX shaders $s_failshaders"
149 if [ -n "$s_leaked" ]; then
152 if [ -n "$s_error" ]; then
153 s_error=`echo "$s_error" | sed "s,$PWD/\?,,g"`
154 echo -n ", ERROR: $s_error"
166 if HEAD "$url$M-$blobhash.pk3"; then
172 git checkout -f "$commithash"
174 if [ -n "$IRCSPAM" ]; then
175 pre2spam "$M" "$url$M-$blobhash.pk3" "$REFNAME" "$commithash" | $IRCSPAM
180 sz=`grep '^size ' "$M.mapinfo" 2>/dev/null || true`
181 if [ -n "$sz" ]; then
182 minimap_override="-minimap + -minmax ${sz#size }"
186 ../../../misc/tools/xonotic-map-compiler "$M" `grep ^- "$M.map.options" | cut -d '#' -f 1` $minimap_override $build_override > "$M.log" 2>&1
189 if ! [ -f "maps/$M.bsp" ]; then
190 echo >>"$M.log" "ERROR: No BSP file"
194 if [ -n "$IRCSPAM" ]; then
195 cat "maps/$M.log" | log2spam "$M" "$url$M-$blobhash.pk3" "$REFNAME" "$commithash" "$status" "$dt" > "maps/$M.irc"
197 zip -9r "$M-$blobhash.pk3" "maps/$M.bsp" "maps/$M.log" "maps/$M.irc" "maps/$M/" "maps/$M.lin" "gfx/${M}_mini.tga"
198 ln -snf "../$M-$blobhash.pk3" "$M.pk3" # from ALL branches, so beware!
199 cp "$M-$blobhash.pk3" "$M-full-$blobhash.pk3"
200 zip -9r "$M-full-$blobhash.pk3" `git diff --name-only --diff-filter=ACMRTUXB master...HEAD` || true
201 ln -snf "../$M-full-$blobhash.pk3" "$M-full.pk3" # from ALL branches, so beware!
202 rsync -vaSHP "$M-$blobhash.pk3" "$M-full-$blobhash.pk3" "$url_ssh"
203 rsync -vaSHP "$M.pk3" "$M-full.pk3" "$url_ssh""latest/"
204 if [ -n "$IRCSPAM" ]; then
205 $IRCSPAM < "maps/$M.irc"
216 if HEAD "$url$M-$blobhash/"; then
220 if ! unzip -l "$bspdir/$M-$blobhash.pk3" "maps/$M.bsp"; then
228 if [ -n "$DISPLAY" ]; then
229 misc/tools/xonotic-map-screenshot "$M" $screenshot_override +"scr_screenshot_name \"$M-\""
231 #startx "$PWD/misc/tools/xonotic-map-screenshot" "$M" $screenshot_override +"scr_screenshot_name \"$M-\"" -- :8
232 #startx "$PWD/misc/tools/xonotic-map-screenshot" "$M" $screenshot_override +"scr_screenshot_name \"$M-\"" -gl_driver /usr/local/lib/gallium3d/libGL.so -- /usr/bin/Xvfb :8 -screen 0 1024x768x24
233 startx "$PWD/misc/tools/xonotic-map-screenshot" "$M" $screenshot_override +"scr_screenshot_name \"$M-\"" -- /usr/bin/Xvfb :8 -screen 0 1024x768x24
236 if ! mv ~/.xonotic/data/screenshots "$M-$blobhash"; then
237 if [ -n "$IRCSPAM" ]; then
238 #ss2spam "$M" "$url$M-$blobhash/" "$REFNAME" "$commithash" 1 > "maps/$M.ircss"
239 ss2spam "$M" "$url?d" "$REFNAME" "$commithash" 1 > "maps/$M.ircss"
243 if [ -n "$IRCSPAM" ]; then
244 #ss2spam "$M" "$url$M-$blobhash/" "$REFNAME" "$commithash" 0 > "maps/$M.ircss"
245 ss2spam "$M" "$url?d" "$REFNAME" "$commithash" 0 > "maps/$M.ircss"
247 chmod 1777 "$M-$blobhash"
248 ln -snf "../$M-$blobhash" "$M" # from ALL branches, so beware!
249 rsync -vaSHP "$M-$blobhash" "$url_ssh"
250 rsync -vaSHP "$M" "$url_ssh""latest/"
251 if [ -n "$IRCSPAM" ]; then
252 $IRCSPAM < "maps/$M.ircss"
264 if mv "$bspdir_old/$M-$blobhash.pk3" "$bspdir/$M-$blobhash.pk3"; then
265 if unzip -l "$bspdir/$M-$blobhash.pk3" >/dev/null 2>&1; then
269 if ! wget -c -O "$bspdir/$M-$blobhash.pk3" "$url$M-$blobhash.pk3"; then
270 if ! curl -o "$bspdir/$M-$blobhash.pk3" "$url$M-$blobhash.pk3"; then
271 rm -f "$bspdir/$M-$blobhash.pk3"
272 echo "WARNING: could not download $url$M-$blobhash.pk3, maybe not ready yet"
277 if ! unzip -l "$bspdir/$M-$blobhash.pk3"; then
278 rm -f "$bspdir/$M-$blobhash.pk3"
279 echo "WARNING: could not download $url$M-$blobhash.pk3, invalid zip file"
291 echo "$M $blobhash $commithash $REFNAME"
296 mkdir -p "$bspdir" "$bspdir.old"
297 for b in "$bspdir"/*-????????????????????????????????????????-????????????????????????????????????????.pk3; do
299 mv "$b" "$bspdir.old"/
302 allmaps "HEAD" getthemap "$url_http" "$bspdir.old" "$bspdir"
307 git for-each-ref 'refs/remotes' | grep -vE ' refs/remotes/([^/]*/HEAD|.*/archived/.*)$'
312 cd data/xonotic-maps.pk3dir
313 branches | while read -r HASH TYPE REFNAME; do
314 allmaps "$HASH" indexthemap "$REFNAME"
321 cd data/xonotic-maps.pk3dir
322 branches | while read -r HASH TYPE REFNAME; do
323 if [ -f "$build_cachedir/$HASH" ]; then
326 allmaps "$HASH" buildthemap "$REFNAME" "$url_http"
327 touch "$build_cachedir/$HASH"
329 git checkout -f master
332 runmakeindex > "branches.idx.new"
333 rsync -vaSHP "branches.idx.new" "$url_ssh""branches.idx.new"
334 rm -f "branches.idx.new"
335 cd data/xonotic-maps.pk3dir
336 branches | while read -r HASH TYPE REFNAME; do
337 if [ -f "$screenshot_cachedir/$HASH" ]; then
343 git checkout -f "$HASH"
346 if $getthemap_fail; then
350 allmaps "$HASH" screenshotthemap "$REFNAME" "$url_http"
352 touch "$screenshot_cachedir/$HASH"
354 git checkout -f master
360 if ! cd data/xonotic-maps.pk3dir >/dev/null 2>&1; then
361 echo "data/xonotic-maps.pk3dir does not exist, not downloading"
366 echo "List of maps that got deleted (if any) and currently are in $bspdir.old:"
367 ls -l "$bspdir.old" || true
372 rm -f *-????????????????????????????????????????-????????????????????????????????????????.pk3
373 wget -r -l1 -A "*.pk3" -N --no-parent --no-directories "$url_http""latest"
376 log2spam "mapname" "http://mapurl" "branch" "commit" "0"