You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
615 B
27 lines
615 B
sudo: required |
|
os: |
|
- linux |
|
- osx |
|
dist: trusty |
|
addons: |
|
apt: |
|
sources: |
|
- sourceline: 'ppa:bitcoin/bitcoin' |
|
key_url: 'http://keyserver.ubuntu.com:11371/pks/lookup?op=get&search=0xD46F45428842CE5E' |
|
packages: |
|
- bitcoind |
|
- python-qt4 python-sip |
|
before_install: |
|
- do_on(){ if [ "$TRAVIS_OS_NAME" = "$1" ]; then shift; $@ ; fi; } |
|
install: |
|
- ./install.sh --develop --no-gpg-validation |
|
before_script: |
|
- source jmvenv/bin/activate |
|
script: |
|
- do_on linux bitcoind --help | head -1 |
|
- do_on linux ./test/run_tests.sh |
|
after_success: |
|
- do_on linux coveralls |
|
branches: |
|
except: |
|
- py3
|
|
|