From 8b9b0d3cf30805a04859700c62f21cb71917ffb2 Mon Sep 17 00:00:00 2001 From: Johann Bauer Date: Fri, 9 Feb 2018 13:07:57 +0100 Subject: [PATCH] Test Windows build using Travis --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.travis.yml b/.travis.yml index 38a0acf8f..9b129e33d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,3 +12,17 @@ script: after_success: - if [ "$TRAVIS_BRANCH" = "master" ]; then pip install pycurl requests && contrib/make_locale; fi - coveralls +jobs: + include: + - stage: windows build + sudo: true + python: 3.5 + install: + - sudo dpkg --add-architecture i386 + - wget -nc https://dl.winehq.org/wine-builds/Release.key + - sudo apt-key add Release.key + - sudo apt-add-repository https://dl.winehq.org/wine-builds/ubuntu/ + - sudo apt-get update -qq + - sudo apt-get install -qq winehq-stable dirmngr gnupg2 p7zip-full + script: ./contrib/build-wine/build.sh + after_success: true