mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@1651 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
011a3ba327
commit
8ae2a7c1ac
1 changed files with 55 additions and 31 deletions
|
@ -1,23 +1,27 @@
|
|||
#!/bin/bash
|
||||
#!/bin/sh
|
||||
|
||||
# some paths
|
||||
top=/home/plagman/src/eduke32
|
||||
source=polymer/eduke32
|
||||
top=/var/www/synthesis/eduke32
|
||||
lockfile=$top/synthesis_building
|
||||
source=eduke32
|
||||
output=/var/www/dukeworld.duke4.net/eduke32/synthesis
|
||||
make=( make PLATFORM=WINDOWS CC='wine gcc' CXX='wine g++' AS='wine nasm' RC='wine windres' STRIP='wine strip' AR='wine ar' RANLIB='wine ranlib' PRETTY_OUTPUT=0 )
|
||||
make=( make PLATFORM=WINDOWS CC='wine gcc' CXX='wine g++' AS='wine nasm' RC='wine windres' STRIP='wine strip' AR='wine ar' RANLIB='wine ranlib' PRETTY_OUTPUT=0 NEDMALLOC=0 )
|
||||
clean=veryclean
|
||||
|
||||
# the following file paths are relative to $source
|
||||
targets=( eduke32.exe mapster32.exe )
|
||||
bin_packaged=( eduke32.exe mapster32.exe duke3d.def.sample enhance.con.sample SEHELP.HLP STHELP.HLP m32script_ex.map names.h tiles.cfg buildlic.txt GNU.TXT m32help.hlp ror.map a.m32 )
|
||||
not_src_packaged=( rsrc/game2.psd rsrc/game3.psd source/jaudiolib/third-party/vorbis.framework/Versions/A/vorbis Apple )
|
||||
bin_packaged=( eduke32.exe mapster32.exe SEHELP.HLP STHELP.HLP names.h buildlic.txt GNU.TXT m32help.hlp nedmalloc.dll samples )
|
||||
not_src_packaged=( psd source/jaudiolib/third-party/vorbis.framework/Versions/A/vorbis Apple )
|
||||
|
||||
# group that owns the resulting packages
|
||||
group=dukeworld
|
||||
|
||||
# some variables
|
||||
dobuild=
|
||||
buildfailed=
|
||||
|
||||
# controls resulting package filenames... will support linux later
|
||||
basename=eduke32
|
||||
platform=win32
|
||||
|
||||
# if the output dir doesn't exist, create it
|
||||
if [ ! -e $output ]
|
||||
|
@ -25,8 +29,17 @@ then
|
|||
mkdir -p $output
|
||||
fi
|
||||
|
||||
# update the code repository and get the last revision number from SVN
|
||||
if [ -f $lockfile ]
|
||||
then
|
||||
echo "Build already in progress!"
|
||||
exit
|
||||
else
|
||||
touch $lockfile
|
||||
fi
|
||||
|
||||
cd $top
|
||||
|
||||
# update the code repository and get the last revision number from SVN
|
||||
head=`svn update | tail -n1 | awk '{ print $NF }' | cut -d. -f1`
|
||||
echo "HEAD is revision $head."
|
||||
|
||||
|
@ -39,6 +52,7 @@ then
|
|||
dobuild=1
|
||||
else
|
||||
echo "Last built revision is $lastrevision."
|
||||
|
||||
# if the last built revision is less than HEAD, we also build
|
||||
if [ $lastrevision -lt $head ]
|
||||
then
|
||||
|
@ -50,58 +64,68 @@ fi
|
|||
if [ $dobuild ]
|
||||
then
|
||||
echo "Launching a build..."
|
||||
|
||||
cd $top/$source
|
||||
# clean the tree
|
||||
echo "${make[@]}" $clean
|
||||
"${make[@]}" $clean
|
||||
# build
|
||||
echo "${make[@]}"
|
||||
"${make[@]}"
|
||||
|
||||
# clean the tree and build
|
||||
echo "${make[@]}" $clean all
|
||||
"${make[@]}" $clean all
|
||||
|
||||
# make sure all the targets were produced
|
||||
for i in "${targets[@]}"; do
|
||||
if [ ! -e $i ]
|
||||
then
|
||||
buildfailed=1
|
||||
fi
|
||||
done
|
||||
# bail out if the build is failed
|
||||
if [ $buildfailed ]
|
||||
then
|
||||
echo "Build failed! Bailing out..."
|
||||
rm -r $lockfile
|
||||
exit
|
||||
fi
|
||||
done
|
||||
|
||||
# get the date in the YYYYMMDD format (ex: 20091001)
|
||||
date=`date +%Y%m%d`
|
||||
|
||||
# create the output directory
|
||||
mkdir $output/$date-$head
|
||||
|
||||
# package the binary snapshot
|
||||
echo zip -9 $output/$date-$head/eduke32_win32_$date-$head.zip ${bin_packaged[@]}
|
||||
zip -9 $output/$date-$head/eduke32_win32_$date-$head.zip ${bin_packaged[@]}
|
||||
echo zip -9 $output/$date-$head/$basename_$platform_$date-$head.zip ${bin_packaged[@]}
|
||||
zip -9 $output/$date-$head/$basename_$platform_$date-$head.zip ${bin_packaged[@]}
|
||||
|
||||
# hack to restore [e]obj/keep.me
|
||||
echo svn update -r $head
|
||||
svn update -r $head
|
||||
|
||||
# export the source tree into the output directory
|
||||
svn export . $output/$date-$head/eduke32_$date-$head
|
||||
echo svn export . $output/$date-$head/eduke32_$date-$head
|
||||
svn export . $output/$date-$head/$basename_$date-$head
|
||||
echo svn export . $output/$date-$head/$basename_$date-$head
|
||||
|
||||
# package the source
|
||||
cd $output/$date-$head
|
||||
|
||||
# first remove the unnecessary files
|
||||
for i in "${not_src_packaged[@]}"; do
|
||||
echo rm -r eduke32_$date-$head/$i
|
||||
rm -r eduke32_$date-$head/$i
|
||||
echo rm -r $basename_$date-$head/$i
|
||||
rm -r $basename_$date-$head/$i
|
||||
done
|
||||
echo tar cvzf eduke32_src_$date-$head.tar.gz eduke32_$date-$head
|
||||
tar cvzf eduke32_src_$date-$head.tar.gz eduke32_$date-$head
|
||||
rm -r eduke32_$date-$head
|
||||
|
||||
echo tar cjf $basename_src_$date-$head.tar.bz2 $basename_$date-$head
|
||||
tar cjf $basename_src_$date-$head.tar.bz2 $basename_$date-$head
|
||||
rm -r $basename_$date-$head
|
||||
|
||||
# output the changelog since last snapshot in the output directory
|
||||
if [ $lastrevision ]
|
||||
then
|
||||
cd $top/$source
|
||||
svn log -r $head:$lastrevision > $output/$date-$head/ChangeLog.txt
|
||||
fi
|
||||
# hack for our served directory structure
|
||||
|
||||
# hack for our served directory structure... really belongs elsewhere,
|
||||
# like in whatever script executes this one
|
||||
chmod -R g+w $output/$date-$head
|
||||
chown -R :$group $output/$date-$head
|
||||
|
||||
rm -r $lockfile
|
||||
else
|
||||
echo "Nothing to do."
|
||||
rm -r $lockfile
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue