diff options
Diffstat (limited to 'standalone/windows/build.sh')
-rw-r--r-- | standalone/windows/build.sh | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/standalone/windows/build.sh b/standalone/windows/build.sh new file mode 100644 index 000000000..0e6e1af77 --- /dev/null +++ b/standalone/windows/build.sh @@ -0,0 +1,36 @@ +#!/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="/c/Program Files (x86)/Haskell Platform/2012.4.0.0/bin:$PATH" + +# Run a command in the cygwin environment. +incygwin () { + PATH="/c/cygwin/bin:$PATH" "$@" +} + +# Uses git from cygwin to checkout git-annex, because the repository +# contains ":" in filenames. +if ! [ -d "git-annex" ]; then + incygwin git clone git://git-annex.branchable.com git-annex +fi +cd git-annex +incygwin git pull origin master + +# Build git-annex +cabal update +# cabal install is not run in cygwin, because we don't want configure scripts +# for haskell libraries to link them with the cygwin library. +FLAGS="-Webapp -Assistant" +cabal install --only-dependencies -f"$FLAGS" +incygwin cabal configure -f"$FLAGS" +incygwin cabal build + +# Build the installer +cabal install nsis +ghc --make Build/NullSoftInstaller.hs +Build/NullSoftInstaller.exe |