#1109 Work in Progress on MinGW/32 daily build.

v0.27.3
Robin Mills 9 years ago
parent cfbb693888
commit d5fef7b428

@ -170,7 +170,6 @@ testBuild()
cp -R /usr/local/lib/pkgconfig/* "$dist/lib/pkgconfig" cp -R /usr/local/lib/pkgconfig/* "$dist/lib/pkgconfig"
mkdir -p "$dist/share/man/man1/" mkdir -p "$dist/share/man/man1/"
cp -R /usr/local/share/man/man1/*exiv2* "$dist/share/man/man1/" cp -R /usr/local/share/man/man1/*exiv2* "$dist/share/man/man1/"
mkdir -p "$dist/samples"
# run the test suite # run the test suite
make tests | tee "$dist/logs/test.log" make tests | tee "$dist/logs/test.log"
@ -254,7 +253,7 @@ if [ "$result" == "0" ]; then
# add documentation and samples to dist # add documentation and samples to dist
cat contrib/buildserver/dailyReadMe.txt | sed -E -e "s/__BUILD__/$zip/" > "$build/dist/ReadMe.txt" cat contrib/buildserver/dailyReadMe.txt | sed -E -e "s/__BUILD__/$zip/" > "$build/dist/ReadMe.txt"
mkdir -p "$build/dist/samples/" mkdir -p "$build/dist/samples/"
cp samples/* "$build/dist/samples/" cp samples/*.cpp samples/*.hpp "$build/dist/samples/"
# create the bundle # create the bundle
pushd "$build" > /dev/null pushd "$build" > /dev/null

@ -3,7 +3,7 @@
source $(find . -name buildserver.library 2>/dev/null) source $(find . -name buildserver.library 2>/dev/null)
echo ------------------------------- echo -------------------------------
echo PLATFORM = $PLATFORM echo PLATFORM = $PLATFORM PWD = $PWD
echo ------------------------------- echo -------------------------------
## ##
# figure out today's build # figure out today's build
@ -126,6 +126,7 @@ case $PLATFORM in
mingw) mingw)
if [ ! -z "$RECURSIVE" ]; then if [ ! -z "$RECURSIVE" ]; then
svn update .
# test the delivered exiv2 # test the delivered exiv2
PATH="$PWD/$PLATFORM/bin:$PATH" PATH="$PWD/$PLATFORM/bin:$PATH"
echo '' echo ''

Loading…
Cancel
Save