You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

265 lines
9.7 KiB
Bash

#!/bin/bash
##
# cmake_daily.sh
##
PATH="$PATH:/usr/local/bin/"
source $(find . -name buildserver.library)
##
# determine location of the build and source directories
if [ "$PLATFORM" == "msvc" ]; then
exiv2=$(cygpath -aw .)
build=$(cygpath -aw ./build)
dist=$(cygpath -au ./build/dist/)
msvc=$(cygpath -au ./contrib/cmake/msvc)
else
exiv2=$PWD
build=$PWD/build
dist=$PWD/build/dist/$PLATFORM
if [ -e $exiv2/CMakeCache.txt ]; then rm -rf $exiv2/CMakeCache.txt ; fi
fi
##
# create a clean directory for an out-of-source build
rm -rf dist
mkdir -p $dist
mkdir -p $build/dist/logs
echo "---- dist = $dist ------"
echo "---- build = $build ------"
##
# test the build
# - don't test msvc because it was tested by cmakeBuild
# - don't test mingw because it's build with autotools and tested in line
testBuild()
{
if [ -e $dist/bin/exiv2 ]; then
pushd ../test > /dev/null
# EXIV2_BINDIR is used by the test suite to locate executables
export EXIV2_BINDIR=$dist/bin
# set LD_LIBRARY_PATH (and DYLD_LIBRARY_PATH for macosx)
# to be sure we run the tests with the newly built library
export DYLD_LIBRARY_PATH=$dist/lib
export LD_LIBRARY_PATH=$dist/lib
(
for test in addmoddel.sh \
bugfixes-test.sh \
exifdata-test.sh \
exiv2-test.sh \
imagetest.sh \
iotest.sh \
iptctest.sh \
modify-test.sh \
path-test.sh \
preview-test.sh \
stringto-test.sh \
tiff-test.sh \
write-test.sh \
write2-test.sh \
xmpparser-test.sh \
conversions.sh
do
echo '++' $test '++' ; ./$test
done
) | tr -d $'\r' | tee "$build/dist/logs/test.log"
popd > /dev/null
$EXIV2_BINDIR/exiv2 -vV
ls -alt $EXIV2_BINDIR
$EXIV2_BINDIR/exiv2 -vV -g date -g time -g version
ls -alt $EXIV2_BINDIR/exiv2$exe
else
echo ''
echo '**** no build created ****'
echo ''
result=1
fi
}
##
# perform the build
(
case $PLATFORM in
msvc)
##
# get windows cmd.exe to perform the build
# use a subshell to restore the path
(
PATH="$msvc:/cygdrive/c/Windows/System32:/cygdrive/c/Program Files/csvn/bin:/cygdrive/c/Program Files (x86)/WANdisco/Subversion/csvn/bin:/cygdrive/c/Program Files/7-zip:/cygdrive/c/Program Files/CMake/bin:/cygdrive/c/Program Files/cmake/bin:/cygdrive/c/Program Files (x86)/cmake/bin"
# cmd.exe /c "cd $build && vcvars $vs $arch && cmakeBuild --samples --build --exiv2 $exiv2 $*"
for ARCH in 64 32; do
for VS in 2005 2017; do
echo -=-=-=-=-=-=-=-=-=-=-=-
echo cmd.exe /c "cd $build && vcvars $VS $ARCH && cmakeBuild --build --samples --exiv2 $exiv2 $*"
echo -=-=-=-=-=-=-=-=-=-=-=-
cmd.exe /c "cd $build && vcvars $VS $ARCH && cmakeBuild --build --samples --exiv2 $exiv2 $*"
done
done
result=$?
)
mv $msvc/dist . # bring the new build here
cp $msvc/vcvars.bat $build/dist # required by test_daily.sh
;;
mingw)
if [ ! -z "$RECURSIVE" ]; then
# we are already in MinGW/bash, so build
##
# dont use cmake as I can't get it to work
# cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=$dist -DEXIV2_ENABLE_NLS=OFF -DCMAKE_C_COMPILER=$(which gcc) -DCMAKE_CXX_COMPILER=$(which g++) $exiv2
##
##
# build with autotools
if [ -z "$dist" ]; then dist=dist ; fi
make clean
make config
./configure --prefix=/usr/local
make
# install and make the samples
make install
export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
make samples
# copy the executable binaries (not libtool script wrappers)
mkdir -p "$dist/bin"
cp bin/.libs/*.exe src/.libs/*.exe "$dist/bin"
# copy installed stuff from /usr/local/bin to dist/bin (and lib and include)
for d in bin lib include; do
mkdir -p "$dist/$d"
cp -R /usr/local/$d/*expat* /usr/local/$d/*exiv* /usr/local/$d/z* /usr/local/$d/libz* /usr/local/$d/libdl* "$dist/$d"
done
# fix up minor stuff
mkdir -p "$dist/lib/pkgconfig" # pkgconfig magic
cp -R /usr/local/lib/pkgconfig/* "$dist/lib/pkgconfig"
mkdir -p "$dist/share/man/man1/" # man pages
cp -R /usr/local/share/man/man1/*exiv2* "$dist/share/man/man1/"
# run the test suite
make tests | tee "$build/dist/logs/test.log"
else
# recursively invoke MinGW/bash with appropriate tool chain
export RECURSIVE=1
export TMP=/tmp
export TEMP=$TMP
if [ "$x64" == true ]; then
export CFLAGS=-m64
export CXXFLAGS=-m64
export LDFLAGS=-m64
/c/MinGW64/msys/1.0/bin/bash.exe -c "export PATH=/c/TDM-GCC-64/bin:/c/MinGW64/bin:/c/MinGW64/msys/1.0/bin:/c/MinGW64/msys/1.0/local/bin ; $0"
result=$?
fi
if [ "$win32" == true ]; then
export CFLAGS=-m32
export CXXFLAGS=-m32
export LDFLAGS=-m32
/c/MinGW/msys/1.0/bin/bash.exe -c "export PATH=/c/Qt/Qt5.6.0/5.6/mingw49_32/bin:/c/Qt/Qt5.6.0/Tools/mingw492_32/bin:/c/MinGW/bin:/usr/bin:/usr/local/bin:. ; $0"
result=$?
fi
fi
;;
*) pushd $build > /dev/null # macosx and linux for sure
(
# build 64 bit library
export CFLAGS=-m64
export CXXFLAGS=-m64
export LDFLAGS=-m64
# Always use /usr/local/bin/cmake
# I can guarantee it to be at least 3.4.1
# because I built it from source and installed it on the buildserver
/usr/local/bin/cmake -DCMAKE_INSTALL_PREFIX=$dist -DEXIV2_ENABLE_NLS=OFF $exiv2
make
result=$?
/usr/local/bin/cmake --build . --target install
testBuild
)
popd > /dev/null
;;
esac
) | tr -d $'\r' | tee "$build/dist/logs/build.log"
# exit if are in mingw and leave cygwin to package the build
if [ "$(osName)" == "mingw" ]; then echo "goodbye from mingw" ; exit 0; fi
##
# store the build for users to collect
if [ "$result" == "0" ]; then
case $PLATFORM in
linux) mmHD="/media/psf/Home/Jenkins" ;;
msvc|cygwin|mingw) mmHD="//psf/Home/Jenkins" ;;
*) mmHD="/Users/rmills/Jenkins" ;;
esac
jpubl="$mmHD/builds"
echo jpubl = $jpubl
daily="$jpubl/Daily"
weely="$jpubl/Weekly"
monly="$jpubl/Monthly"
if [ ! -e $jpubl ]; then mkdir -p $jpubl ; fi
if [ ! -e $daily ]; then mkdir -p $daily ; fi
if [ ! -e $weely ]; then mkdir -p $weely ; fi
if [ ! -e $monly ]; then mkdir -p $monly ; fi
if [ -e $jpubl ]; then
svn=0000
# /usr/local/bin/svn info . 2>/dev/null >/dev/null
# if [ "$?" == "0" ]; then
# svn=$(/usr/local/bin/svn info . | grep '^Last Changed Rev' | cut -f 2 -d':' | tr -d ' ')
# fi
dow=$(date '+%w') # 0..6 day of the week
dom=$(date '+%d') # 1..31 day of the month
mon=$(date '+%m') # 1..12 month
dat=$(date '+%Y-%m-%d+%H-%M-%S')
zip="${PLATFORM}-svn-${svn}-date-${dat}.tar.gz"
# add documentation and samples to dist
cat contrib/buildserver/dailyReadMe.txt | sed -E -e "s/__BUILD__/$zip/" > "$build/dist/ReadMe.txt"
mkdir -p "$build/dist/samples/"
cp samples/*.cpp samples/*.hpp "$build/dist/samples/"
mkdir -p "$build/dist/contrib/Qt"
cp contrib/Qt/* "$build/dist/contrib/Qt"
# create the bundle
pushd "$build" > /dev/null
rm -rf *.tar.gz
COPYFILE_DISABLE=1 tar czf "$zip" dist/
ls -alt
mv $zip ..
popd > /dev/null
# clean userContent/build directories
# daily > 60 days; weekly > 1 year; monthly > 5 years
if [ -e $daily ]; then find $daily -type f -ctime +60 -exec rm -rf {} \; ; fi
if [ -e $weely ]; then find $weely -type f -ctime +365 -exec rm -rf {} \; ; fi
if [ -e $monly ]; then find $monly -type f -ctime +$((366 * 5)) -exec rm -rf {} \; ; fi
# store the build
cp $zip $daily
if [ "$dow" == "1" ]; then cp $zip $weely; fi # Monday
if [ "$dom" == "01" ]; then cp $zip $monly; fi # First day of the month
echo '***' build = $zip '***'
else
echo '***' jenkins builds directory does not exist ${jpubl} '***'
result=2
fi
fi
exit $result
# That's all Folks!
##