]> git.xonotic.org Git - xonotic/xonotic.git/blob - misc/infrastructure/xonotic-release-build.cron
Sync release build script from srv03.
[xonotic/xonotic.git] / misc / infrastructure / xonotic-release-build.cron
1 #!/bin/sh
2
3 if [ -z "$RELEASETYPE" ]; then
4         export RELEASETYPE=autobuild
5         #export RELEASETYPE=release
6 fi
7
8 case "$RELEASETYPE" in
9         autobuild)
10                 RELEASETYPEDIR=
11                 RELEASETYPENAME="$RELEASETYPE"
12                 ;;
13         *)
14                 RELEASETYPEDIR="$RELEASETYPE/"
15                 RELEASETYPENAME="$RELEASETYPE-like build"
16                 ;;
17 esac
18
19 # is being run as cronjob, better set PATH
20 export PATH=/home/xonotic-build/ccache:/home/xonotic-build/bin:/usr/local/bin:/usr/bin:/bin:/usr/games
21
22 # TEST: use s2tc, high quality
23 #export dds_tool=s2tc
24
25 # Try crunch.
26 export CACHEDIR=$HOME/.xonotic-cached-converter-crunch
27 export dds_tool=crunch
28
29 mepwd=$PWD
30 me=$0
31
32 if rm "$me.not-today" 2>/dev/null; then
33         echo "No build today (not-today marker removed)!"
34         exit 0
35 fi
36
37 set -ex
38
39 ssh autobuild-release-uploader@beta.xonotic.org '
40         set -e;
41         cd HTML/autobuild/;
42         s0=`date -d "now - 7 days - 12 hours" +%s`;
43         s00=`date -d "now - 60 days - 12 hours" +%s`;
44         for X in * */*; do
45                 [ -f "$X" ] || continue;
46                 d=${X##*/};
47                 d=${d#Xonotic-};
48                 d=${d#gmqcc-};
49                 d=${d%%[-_.]*};
50                 [ x"$d" != x"latest" ] || continue;
51                 w=`date -d $d +%w`;
52                 s=`date -d $d +%s`;
53                 if [ "$w" -ne 0 -a "$s" -lt "$s0" -o "$s" -lt "$s00" ]; then
54                         rm -f "$X";
55                 fi;
56         done
57 '
58 cd ~/xonotic-release-build
59 ./all clean --reclone
60 # ./all checkout maint
61 ./all checkout
62 ./all each git checkout HEAD^0
63 # add all feature branches we want
64
65 # map branches that we include:
66 #   winners in the poll for upcoming CTF maps
67 #   maps near completion
68
69 ## for b in \
70 ##      origin/divVerent/rebase/for-autobuild \
71 ## ; do
72 ##      b=$b ./all each sh -c 'if git rev-parse $b >/dev/null 2>&1; then git merge $b; fi'
73 ## done
74 ./all update -N
75 d0=`date +%Y%m%d`
76 d=$d0
77 i=1
78 while HEAD -C xonotic:g-23 http://beta.xonotic.org/autobuild/"$RELEASETYPEDIR""Xonotic-$d.zip"; do
79         i=$(($i+1))
80         d="$d0"_"$i"
81 done
82 RELEASEDATE=$d xvfb-run ./all release
83 for X in Xonotic-$d*.zip; do
84         ln -snf "$X" "Xonotic-latest${X#Xonotic-$d}"
85 done
86 rsync -vaSHP Xonotic*.zip autobuild-release-uploader@beta.xonotic.org:HTML/autobuild/"$RELEASETYPEDIR"
87 if [ -z "$RELEASETYPEDIR" ]; then
88         ssh autobuild-release-uploader@beta.xonotic.org sh update-rsync.sh "$d"
89 fi
90 echo "Finished a new $RELEASETYPENAME at http://beta.xonotic.org/autobuild/$RELEASETYPEDIR" | $IRCSPAM
91 cd