]> git.xonotic.org Git - xonotic/xonotic.git/blob - misc/infrastructure/xonotic-release-build.cron
Sync xonotic-release-build script.
[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 # Build locally.
30 export HOSTS_THAT_ARE_MYSELF='xonotic-build-linux64 xonotic-build-win32 xonotic-build-win64 xonotic-build-osx'
31
32 mepwd=$PWD
33 me=$0
34
35 if rm "$me.not-today" 2>/dev/null; then
36         echo "No build today (not-today marker removed)!"
37         exit 0
38 fi
39
40 set -ex
41
42 ssh autobuild-release-uploader@beta.xonotic.org '
43         set -e;
44         s0=`date -d "now - 7 days - 12 hours" +%s`;
45         s00=`date -d "now - 60 days - 12 hours" +%s`;
46         for X in * */*; do
47                 [ -f "$X" ] || continue;
48                 d=${X##*/};
49                 d=${d#Xonotic-};
50                 d=${d#gmqcc-};
51                 d=${d%%[-_.]*};
52                 [ x"$d" != x"latest" ] || continue;
53                 w=`date -d $d +%w`;
54                 s=`date -d $d +%s`;
55                 if [ "$w" -ne 0 -a "$s" -lt "$s0" -o "$s" -lt "$s00" ]; then
56                         rm -f "$X";
57                 fi;
58         done
59 '
60 cd ~/xonotic-release-build
61 ./all clean --reclone
62 # ./all checkout maint
63 ./all checkout
64 ./all each git checkout HEAD^0
65 # add all feature branches we want
66
67 # map branches that we include:
68 #   winners in the poll for upcoming CTF maps
69 #   maps near completion
70
71 #for b in \
72 #       origin/divVerent/selfbuildagain \
73 #; do
74 #       b=$b ./all each sh -c 'if git rev-parse $b >/dev/null 2>&1; then git merge $b; fi'
75 #done
76 ./all update -N
77 d0=`date +%Y%m%d`
78 d=$d0
79 i=1
80 while HEAD -C xonotic:g-23 http://beta.xonotic.org/autobuild/"$RELEASETYPEDIR""Xonotic-$d.zip"; do
81         i=$(($i+1))
82         d="$d0"_"$i"
83 done
84 RELEASEDATE=$d ./all release
85 for X in Xonotic-$d*.zip; do
86         ln -snf "$X" "Xonotic-latest${X#Xonotic-$d}"
87 done
88 rsync -vaSHP Xonotic*.zip autobuild-release-uploader@beta.xonotic.org:"$RELEASETYPEDIR"
89 if [ -z "$RELEASETYPEDIR" ]; then
90         ssh autobuild-release-uploader@beta.xonotic.org sh ../../update-rsync.sh "$d"
91 fi
92 echo "Finished a new $RELEASETYPENAME at http://beta.xonotic.org/autobuild/$RELEASETYPEDIR" | $IRCSPAM
93 cd