]> git.xonotic.org Git - xonotic/xonotic.git/blob - misc/infrastructure/xonotic-release-build.cron
Merge branch 'kiwixz/xonotic:master' into 'master'
[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         RC*)
14                 RELEASETYPEDIR="$RELEASETYPE/"
15                 RELEASETYPENAME="$RELEASETYPE build"
16                 ;;
17         *)
18                 RELEASETYPEDIR="$RELEASETYPE/"
19                 RELEASETYPENAME="$RELEASETYPE-like build"
20                 ;;
21 esac
22
23 # is being run as cronjob, better set PATH
24 export PATH=/home/xonotic-build/ccache:/home/xonotic-build/bin:/usr/local/bin:/usr/bin:/bin:/usr/games
25
26 # TEST: use s2tc, high quality
27 #export dds_tool=s2tc
28
29 # Try crunch.
30 export CACHEDIR=$HOME/.xonotic-cached-converter-crunch
31 export dds_tool=crunch
32
33 # Build locally.
34 export HOSTS_THAT_ARE_MYSELF='xonotic-build-linux64 xonotic-build-win32 xonotic-build-win64 xonotic-build-osx'
35
36 mepwd=$PWD
37 me=$0
38
39 if rm "$me.not-today" 2>/dev/null; then
40         echo "No build today (not-today marker removed)!"
41         exit 0
42 fi
43
44 set -ex
45
46 test -z "$RELEASETYPEDIR" && ssh autobuild-release-uploader@beta.xonotic.org '
47         set -e;
48         s0=`date -d "now - 7 days - 12 hours" +%s`;
49         s00=`date -d "now - 60 days - 12 hours" +%s`;
50         for X in * */*; do
51                 [ -f "$X" ] || continue;
52                 d=${X##*/};
53                 d=${d#Xonotic-};
54                 d=${d#gmqcc-};
55                 d=${d%%[-_.]*};
56                 [ x"$d" != x"latest" ] || continue;
57                 w=`date -d $d +%w`;
58                 s=`date -d $d +%s`;
59                 if [ "$w" -ne 0 -a "$s" -lt "$s0" -o "$s" -lt "$s00" ]; then
60                         rm -f "$X";
61                 fi;
62         done
63 '
64
65 cd ~/xonotic-release-build
66 ./all clean --reclone # FIXME this updates timestamps of most unchanged files, making rsync slower, why?
67 # ./all checkout maint
68 ./all checkout
69 ./all each git checkout HEAD^0
70 # add all feature branches we want
71
72 # map branches that we include:
73 #   winners in the poll for upcoming CTF maps
74 #   maps near completion
75
76 #for b in \
77 #       origin/divVerent/selfbuildagain \
78 #; do
79 #       b=$b ./all each sh -c 'if git rev-parse $b >/dev/null 2>&1; then git merge $b; fi'
80 #done
81 ./all update -N
82 d0=`date +%Y%m%d`
83 d=$d0
84 i=1
85 while HEAD -C xonotic:g-23 http://beta.xonotic.org/autobuild/"$RELEASETYPEDIR""Xonotic-$d.zip"; do
86         i=$(($i+1))
87         d="$d0"_"$i"
88 done
89 RELEASEDATE=$d ./all release
90 sha512sum Xonotic-$d*.zip > Xonotic-$d.sha512
91 for X in Xonotic-$d*.zip; do
92         ln -snf "$X" "Xonotic-latest${X#Xonotic-$d}"
93 done
94 sha512sum Xonotic-latest*.zip > Xonotic-latest.sha512
95 rsync -vaSHP Xonotic*.zip Xonotic*.sha512 autobuild-release-uploader@beta.xonotic.org:"$RELEASETYPEDIR"
96 if [ -z "$RELEASETYPEDIR" ]; then
97         ssh autobuild-release-uploader@beta.xonotic.org sh ../../update-rsync.sh "$d"
98
99         # pipeline files, see: .gitlab-ci.yml in xonotic-data.pk3dir
100         cp data/stormkeep-????????????????????????????????????????-????????????????????????????????????????.pk3 stormkeep.pk3
101         PIPELINE_FILES="gmqcc/gmqcc Xonotic/xonotic-linux64-dedicated stormkeep.pk3"
102         rsync -vSP $PIPELINE_FILES autobuild-release-uploader@beta.xonotic.org:../pipeline-bin/
103         rm -f stormkeep.pk3
104 fi
105 echo "Finished a new $RELEASETYPENAME at http://beta.xonotic.org/autobuild/$RELEASETYPEDIR" | $IRCSPAM
106 cd