diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-10-06 10:11:15 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-07 14:00:45 -0700 |
commit | 450f654063cbbffe7b58e0b785ef8970a0be41ea (patch) | |
tree | 5295dbd03a6fb7faee6759b3e9ec288063b0b4de /scripts/windows-container/after_success.sh | |
parent | 6b9e77ba01472070dd1ac9b87c9dcb068c49b852 (diff) | |
download | subsurface-450f654063cbbffe7b58e0b785ef8970a0be41ea.tar.gz |
Travis: add Windows build in a container
I expect this to become the default way to test Windows builds and
create installers on Travis. The idea is that instead of downloading the
pre-built MXE binaries we might as well use a container that has all
this installed and can be used locally to test if things fail on Travis;
which will allow us to have the exact same environment for testing
locally as runs on Travis.
At this point the container used is way too big - more effort needs to
be spent on shrinking it.
Right now this only deals with Subsurface and not with smtk2ssrf.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'scripts/windows-container/after_success.sh')
-rw-r--r-- | scripts/windows-container/after_success.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/scripts/windows-container/after_success.sh b/scripts/windows-container/after_success.sh new file mode 100644 index 000000000..a6c51a986 --- /dev/null +++ b/scripts/windows-container/after_success.sh @@ -0,0 +1,30 @@ +#!/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 following Windows files for continuous build release:" +find . -name subsurface\*.exe* + +# set up the release message to use +source ${TRAVIS_BUILD_DIR}/scripts/release-message.sh + +# for debugging, let's look around a bit +ls -la + +# the win32 dir is owned by root, as is all its content (because that's +# the user inside the docker container, I guess. So let's create upload.sh +# in the TRAVIS_BUILD_DIR +cd ${TRAVIS_BUILD_DIR} + +# get and run the upload script +wget -c https://raw.githubusercontent.com/dirkhh/uploadtool/master/upload.sh +bash ./upload.sh ${TRAVIS_BUILD_DIR}/../win32/subsurface/subsurface*.exe* + + +# upload smtk2ssrf +#cd ${TRAVIS_BUILD_DIR}/../win32/smtk-import +#bash ../subsurface/upload.sh smtk2ssrf*.exe* |