-WIP-electrum-btcp/.travis.yml

32 lines
891 B
YAML
Raw Permalink Normal View History

sudo: false
2014-06-24 23:49:33 -07:00
language: python
python:
2018-01-07 13:36:34 -08:00
- 3.5
- 3.6
2015-07-02 00:04:02 -07:00
install:
- pip install -r contrib/requirements/requirements-travis.txt
2018-01-07 13:36:34 -08:00
cache:
- pip: true
- directories:
- /tmp/electrum-build
2015-07-02 00:04:02 -07:00
script:
2015-07-02 02:31:14 -07:00
- tox
2017-05-18 12:04:09 -07:00
after_success:
- if [ "$TRAVIS_BRANCH" = "master" ]; then pip install pycurl requests && contrib/make_locale; fi
2017-11-08 08:58:17 -08:00
- coveralls
2018-02-09 04:07:57 -08:00
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
before_script: ls -lah /tmp/electrum-build
2018-02-09 04:07:57 -08:00
script: ./contrib/build-wine/build.sh
after_success: true