2017-11-11 17:38:41 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
if [ ! -z $TRAVIS_BRANCH ] && [ "$TRAVIS_BRANCH" != "master" ] ; then
|
|
|
|
export UPLOADTOOL_SUFFIX=$TRAVIS_BRANCH
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd ${TRAVIS_BUILD_DIR}/../win32/subsurface
|
|
|
|
|
2017-11-14 02:20:41 +00:00
|
|
|
echo "Submitting the following Windows files for continuous build release:"
|
2017-11-13 23:07:17 +00:00
|
|
|
find . -name subsurface\*.exe*
|
2017-11-11 17:38:41 +00:00
|
|
|
|
2017-11-18 00:40:35 +00:00
|
|
|
# set up the release message to use
|
|
|
|
source ${TRAVIS_BUILD_DIR}/scripts/release-message.sh
|
|
|
|
|
2018-10-07 20:58:46 +00:00
|
|
|
# get the upload script
|
2017-12-30 19:10:40 +00:00
|
|
|
wget -c https://raw.githubusercontent.com/dirkhh/uploadtool/master/upload.sh
|
2018-02-19 22:06:52 +00:00
|
|
|
|
2018-10-07 20:58:46 +00:00
|
|
|
# don't upload the Subsurface build (we get that from the container based
|
|
|
|
# Windows build, just upload smtk2ssrf
|
2018-02-19 22:06:52 +00:00
|
|
|
cd ${TRAVIS_BUILD_DIR}/../win32/smtk-import
|
|
|
|
bash ../subsurface/upload.sh smtk2ssrf*.exe*
|