git-annex/standalone/windows/build.sh

55 lines
1.4 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
2013-05-17 16:03:20 +00:00
HP="/c/Program Files (x86)/Haskell Platform/2012.4.0.0"
2013-05-17 16:31:19 +00:00
FLAGS="-Webapp -Assistant -XMPP"
2013-05-17 16:03:20 +00:00
2013-05-17 18:06:47 +00:00
PATH="$HP/bin:$HP/lib/extralibs/bin:/c/Program Files (x86)/NSIS:$PATH"
2013-05-17 15:38:29 +00:00
# Run a command with the cygwin environment available.
# However, programs not from cygwin are preferred.
withcyg () {
PATH="$PATH:/c/cygwin/bin" "$@"
2013-05-17 15:38:29 +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.
rm -f git-annex-installer.exe
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
2013-05-17 15:38:29 +00:00
cabal install --only-dependencies -f"$FLAGS"
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
fi
touch last-incremental-failed
2013-05-20 00:41:44 +00:00
# Build git-annex
withcyg cabal configure -f"$FLAGS"
withcyg cabal build
2013-05-20 00:35:33 +00:00
# Build the installer
cabal install nsis
ghc --make Build/NullSoftInstaller.hs
withcyg Build/NullSoftInstaller.exe
2013-05-20 00:35:33 +00:00
rm -f last-incremental-failed
2013-05-17 20:34:19 +00:00
# Test git-annex
2013-05-17 21:01:20 +00:00
rm -rf .t
withcyg dist/build/git-annex/git-annex.exe test || true