eab95a6246
* use int to_bytes/from_bytes instead of struct * fix ping queue bug and dht functional tests * run functional tests on travis * re-add contact comparison unit test * dont need __ne__ if its just inverting __eq__ result
105 lines
3.4 KiB
YAML
105 lines
3.4 KiB
YAML
sudo: required
|
|
dist: xenial
|
|
language: python
|
|
python: "3.7"
|
|
|
|
jobs:
|
|
include:
|
|
|
|
- stage: code quality
|
|
name: "pylint lbrynet"
|
|
install:
|
|
- pip install pylint
|
|
- pip install git+https://github.com/lbryio/torba.git
|
|
- pip install git+https://github.com/lbryio/lbryschema.git
|
|
- pip install -e .
|
|
script: pylint lbrynet
|
|
|
|
- &tests
|
|
stage: test
|
|
name: "Unit Tests w/ Python 3.7"
|
|
install:
|
|
- pip install coverage
|
|
- pip install git+https://github.com/lbryio/torba.git
|
|
- pip install git+https://github.com/lbryio/lbryschema.git
|
|
- pip install -e .[test]
|
|
script: HOME=/tmp coverage run --source=lbrynet -m twisted.trial --reactor=asyncio tests.unit
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
- <<: *tests
|
|
name: "Unit Tests w/ Python 3.6"
|
|
python: "3.6"
|
|
|
|
- <<: *tests
|
|
name: "DHT Tests w/ Python 3.7"
|
|
script: HOME=/tmp coverage run --source=lbrynet -m twisted.trial --reactor=asyncio tests.functional
|
|
|
|
- <<: *tests
|
|
name: "DHT Tests w/ Python 3.6"
|
|
python: "3.6"
|
|
script: HOME=/tmp coverage run --source=lbrynet -m twisted.trial --reactor=asyncio tests.functional
|
|
|
|
- name: "Integration Tests"
|
|
install:
|
|
- pip install tox-travis coverage
|
|
- pushd .. && git clone https://github.com/lbryio/electrumx.git --branch lbryumx && popd
|
|
- pushd .. && git clone https://github.com/lbryio/orchstr8.git && popd
|
|
- pushd .. && git clone https://github.com/lbryio/lbryschema.git && popd
|
|
- pushd .. && git clone https://github.com/lbryio/lbryumx.git && popd
|
|
- pushd .. && git clone https://github.com/lbryio/torba.git && popd
|
|
script: tox
|
|
after_success:
|
|
- coverage combine tests/
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
- stage: build
|
|
name: "Windows"
|
|
language: generic
|
|
services:
|
|
- docker
|
|
install:
|
|
- docker pull cdrx/pyinstaller-windows:python3-32bit
|
|
script:
|
|
- docker run -v "$(pwd):/src/lbry" cdrx/pyinstaller-windows:python3-32bit lbry/scripts/wine_build.sh
|
|
addons:
|
|
artifacts:
|
|
working_dir: dist
|
|
paths:
|
|
- lbrynet.exe
|
|
target_paths:
|
|
- /daemon/build-${TRAVIS_BUILD_NUMBER}_commit-${TRAVIS_COMMIT:0:7}_branch-${TRAVIS_BRANCH}$([ ! -z ${TRAVIS_TAG} ] && echo _tag-${TRAVIS_TAG})/win/
|
|
|
|
- &build
|
|
name: "Linux"
|
|
python: "3.6"
|
|
install:
|
|
- pip3 install pyinstaller
|
|
- pip3 install git+https://github.com/lbryio/torba.git
|
|
- pip3 install git+https://github.com/lbryio/lbryschema.git
|
|
- pip3 install -e .
|
|
script:
|
|
- pyinstaller -F -n lbrynet lbrynet/cli.py
|
|
- ./dist/lbrynet --version
|
|
env: OS=linux
|
|
addons:
|
|
artifacts:
|
|
working_dir: dist
|
|
paths:
|
|
- lbrynet
|
|
# artifact uploader thinks lbrynet is a directory, https://github.com/travis-ci/artifacts/issues/78
|
|
target_paths:
|
|
- /daemon/build-${TRAVIS_BUILD_NUMBER}_commit-${TRAVIS_COMMIT:0:7}_branch-${TRAVIS_BRANCH}$([ ! -z ${TRAVIS_TAG} ] && echo _tag-${TRAVIS_TAG})/${OS}/lbrynet
|
|
|
|
- <<: *build
|
|
name: "Mac"
|
|
os: osx
|
|
osx_image: xcode9.4
|
|
language: generic
|
|
env: OS=mac
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
- $HOME/Library/Caches/pip
|
|
- $TRAVIS_BUILD_DIR/.tox
|