mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Travis: also build an MXE/Windows installer
In the process, simplify our dependency a bit by no longer building against libssh2 (we don't support ssh based authentication for git on Windows) and libcurl (since it's proxy implementation doesn't appear to actually work on Windows, anyway). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
a157fa5c67
commit
4d04f74312
5 changed files with 118 additions and 61 deletions
15
scripts/windows/after_success.sh
Normal file
15
scripts/windows/after_success.sh
Normal file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ ! -z $TRAVIS_BRANCH ] && [ "$TRAVIS_BRANCH" != "master" ] ; then
|
||||
export UPLOADTOOL_SUFFIX=$TRAVIS_BRANCH
|
||||
fi
|
||||
|
||||
cd ${TRAVIS_BUILD_DIR}/../win32/subsurface
|
||||
|
||||
echo "Submitting the folloing Windows installer for continuous build release:"
|
||||
find . -name subsurface\*.exe
|
||||
|
||||
# get and run the upload script
|
||||
wget -c https://github.com/probonopd/uploadtool/raw/master/upload.sh
|
||||
bash ./upload.sh subsurface*.exe
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue