git-annex/standalone/windows/build.sh

101 lines
3.1 KiB
Bash
Raw Normal View History

2013-05-17 15:38:29 +00:00
#!/bin/sh
#
# This script is run by the jenkins autobuilder, in a mingw environment,
# to build git-annex for Windows.
set -x
set -e
# Path to the Haskell Platform.
#HP="/c/haskell/2014.2.0.0" # now in the default PATH
2015-04-14 18:19:27 +00:00
PATH="/c/Program Files (x86)/NSIS:/c/msysgit/cmd:/c/msysgit/bin:$PATH"
# Run a command with the cygwin environment available.
# However, programs not from cygwin are preferred.
withcyg () {
2013-12-06 18:56:12 +00:00
PATH="$PATH:/c/cygwin/bin" "$@"
2013-05-17 15:38:29 +00:00
}
2013-12-11 15:13:04 +00:00
2013-12-06 18:41:33 +00:00
# This tells git-annex where to upgrade itself from.
UPGRADE_LOCATION=http://downloads.kitenet.net/git-annex/windows/current/git-annex-installer.exe
2015-04-14 19:07:12 +00:00
export UPGRADE_LOCATION
2013-12-06 18:41:33 +00:00
# This can be used to force git-annex to build supporting a particular
# version of git, instead of the version installed at build time.
#FORCE_GIT_VERSION=1.9.5
#export FORCE_GIT_VERSION
2015-04-14 19:03:08 +00:00
2013-12-05 22:07:44 +00:00
# Uncomment to get rid of cabal installed libraries.
2014-08-13 17:21:22 +00:00
#rm -rf /c/Users/jenkins/AppData/Roaming/cabal /c/Users/jenkins/AppData/Roaming/ghc
2013-12-05 22:07:44 +00:00
2013-06-22 17:47:19 +00:00
# Don't allow build artifact from a past successful build to be extracted
2013-05-17 20:35:35 +00:00
# if we fail.
2014-03-01 04:32:08 +00:00
rm -f git-annex-installer.exe
2013-05-17 20:35:35 +00:00
2013-05-17 16:31:19 +00:00
# Install haskell dependencies.
2013-05-17 15:38:29 +00:00
# cabal install is not run in cygwin, because we don't want configure scripts
# for haskell libraries to link them with the cygwin library.
cabal update || true
cabal install --only-dependencies || true
2013-05-17 16:31:19 +00:00
2013-05-20 01:02:50 +00:00
# Detect when the last build was an incremental build and failed,
# and try a full build. Done this way because this shell seems a bit
# broken.
if [ -e last-incremental-failed ]; then
cabal clean || true
# windows breakage..
rm -rf dist dist.old || mv -v dist dist.old
fi
touch last-incremental-failed
2013-05-20 00:41:44 +00:00
# Build git-annex
withcyg cabal configure
if ! withcyg cabal build; then
rm -f Build/EvilLinker.exe
ghc --make Build/EvilLinker -fno-warn-tabs
Build/EvilLinker
fi
2013-12-05 21:17:35 +00:00
# Get extra programs to bundle with git-annex.
# These are msys2 programs, from https://msys2.github.io/.
# Since git for windows uses msys2, and includes its libraries,
# these programs will work well with it.
if [ ! -e rsync.exe ] || [ "$(sha1sum rsync.exe)" != "85cb7a4d16d274fcf8069b39042965ad26abd6aa" ]; then
rm -f rsync.exe || true
2015-05-07 20:05:46 +00:00
withcyg wget https://downloads.kitenet.net/git-annex/windows/assets/rsync.exe
2015-05-07 20:12:05 +00:00
withcyg chmod +x rsync.exe
fi
if [ ! -e wget.exe ] || [ "$(sha1sum wget.exe)" != "044380729200d5762965b10123a4f134806b01cf" ]; then
rm -f wget.exe || true
withcyg wget https://downloads.kitenet.net/git-annex/windows/assets/wget.exe
withcyg chmod +x wget.exe
fi
# Build the installer
cabal install nsis
ghc -fforce-recomp --make Build/NullSoftInstaller.hs -fno-warn-tabs
Build/NullSoftInstaller.exe
2013-05-20 00:35:33 +00:00
rm -f last-incremental-failed
2013-05-17 20:34:19 +00:00
rm -f dist/build-version
ghc --make Build/BuildVersion.hs
Build/BuildVersion > dist/build-version
2013-05-17 20:34:19 +00:00
# Test git-annex
# The test is run in c:/WINDOWS/Temp, because running it in the autobuilder
# directory runs afoul of Windows's short PATH_MAX.
PATH="$(pwd)/dist/build/git-annex/:$PATH"
2014-08-13 17:21:22 +00:00
export PATH
2014-12-30 19:33:42 +00:00
mkdir -p c:/WINDOWS/Temp/git-annex-test/
cd c:/WINDOWS/Temp/git-annex-test/
if withcyg git-annex.exe test; then
rm -rf .t
else
rm -rf .t
echo "Test suite failure; failing build!"
false
fi