2013-05-17 11:38:29 -04: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-12-05 19:15:23 -04:00
|
|
|
# Path to the Haskell Platform.
|
2013-12-06 11:34:27 -04:00
|
|
|
HP="/c/Program Files (x86)/Haskell Platform/2013.2.0.0"
|
2013-12-04 17:11:49 -04:00
|
|
|
|
2013-12-06 14:33:22 -04:00
|
|
|
PATH="$HP/bin:$HP/lib/extralibs/bin:/c/Program Files (x86)/NSIS:/c/msysgit/cmd:/c/msysgit/bin:$PATH"
|
2013-11-22 15:25:15 -04:00
|
|
|
|
2013-05-17 16:56:00 -04:00
|
|
|
# Run a command with the cygwin environment available.
|
|
|
|
# However, programs not from cygwin are preferred.
|
|
|
|
withcyg () {
|
2013-12-06 14:56:12 -04:00
|
|
|
PATH="$PATH:/c/cygwin/bin" "$@"
|
2013-05-17 11:38:29 -04:00
|
|
|
}
|
2013-12-11 11:16:11 -04:00
|
|
|
withcygpreferred () {
|
|
|
|
PATH="/c/cygwin/bin:$PATH" "$@"
|
|
|
|
}
|
2013-12-11 11:13:04 -04:00
|
|
|
|
2013-12-06 14:41:33 -04:00
|
|
|
# This tells git-annex where to upgrade itself from.
|
|
|
|
UPGRADE_LOCATION=http://downloads.kitenet.net/git-annex/windows/current/git-annex-installer.exe
|
|
|
|
|
2013-12-05 18:07:44 -04:00
|
|
|
# Uncomment to get rid of cabal installed libraries.
|
2014-03-01 00:33:50 -04:00
|
|
|
#rm -rf /c/Users/jenkins/AppData/Roaming/cabal /c/Users/jenkins/AppData/Roaming/ghc
|
2013-12-05 18:07:44 -04:00
|
|
|
|
2013-06-22 13:47:19 -04:00
|
|
|
# Don't allow build artifact from a past successful build to be extracted
|
2013-05-17 16:35:35 -04:00
|
|
|
# if we fail.
|
2014-03-01 00:32:08 -04:00
|
|
|
rm -f git-annex-installer.exe
|
2013-05-17 16:35:35 -04:00
|
|
|
|
2013-05-17 12:31:19 -04:00
|
|
|
# Install haskell dependencies.
|
2013-05-17 11:38:29 -04: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.
|
2013-05-19 21:12:46 -04:00
|
|
|
cabal update || true
|
2013-05-17 13:10:41 -04:00
|
|
|
|
2013-12-06 13:57:33 -04:00
|
|
|
cabal install --only-dependencies || true
|
2013-05-17 12:31:19 -04:00
|
|
|
|
2013-05-19 21:02:50 -04: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..
|
2013-12-30 14:11:40 -04:00
|
|
|
rm -rf dist dist.old || mv -v dist dist.old
|
2013-05-19 20:45:54 -04:00
|
|
|
fi
|
|
|
|
touch last-incremental-failed
|
2013-05-19 20:41:44 -04:00
|
|
|
|
2013-05-19 20:45:54 -04:00
|
|
|
# Build git-annex
|
2013-12-09 15:04:57 -04:00
|
|
|
withcyg cabal configure
|
2013-12-09 15:38:57 -04:00
|
|
|
if ! withcyg cabal build; then
|
|
|
|
rm -f Build/EvilLinker.exe
|
|
|
|
ghc --make Build/EvilLinker
|
|
|
|
Build/EvilLinker
|
|
|
|
fi
|
2013-12-05 17:17:35 -04:00
|
|
|
|
2013-05-19 20:45:54 -04:00
|
|
|
# Build the installer
|
|
|
|
cabal install nsis
|
|
|
|
ghc --make Build/NullSoftInstaller.hs
|
2013-12-11 11:16:11 -04:00
|
|
|
# Want to include cygwin programs in bundle, not others, since
|
|
|
|
# it includes the cygwin libs that go with them.
|
|
|
|
withcygpreferred Build/NullSoftInstaller.exe
|
2013-05-19 20:35:33 -04:00
|
|
|
|
2013-05-19 20:45:54 -04:00
|
|
|
rm -f last-incremental-failed
|
2013-05-17 16:34:19 -04:00
|
|
|
|
|
|
|
# Test git-annex
|
2013-12-04 17:11:49 -04:00
|
|
|
# (doesn't currently work well on autobuilder, reason unknown)
|
2013-05-17 17:01:20 -04:00
|
|
|
rm -rf .t
|
2013-06-21 11:42:43 -04:00
|
|
|
withcyg dist/build/git-annex/git-annex.exe test || true
|