forked from LBRYCommunity/lbry-sdk
114 lines
3.4 KiB
YAML
114 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 astroid==2.0.4 aiohttp==3.4.4
|
|
# newer astroid and aiohttp fails in pylint so we pre-install older version
|
|
- pip install pylint
|
|
- pip install git+https://github.com/lbryio/torba.git#egg=torba
|
|
- pip install -e .
|
|
script: pylint lbrynet
|
|
|
|
- stage: test
|
|
name: "Unit Tests"
|
|
install:
|
|
- pip install coverage
|
|
- pip install git+https://github.com/lbryio/torba.git#egg=torba
|
|
- pip install -e .[test]
|
|
script:
|
|
- HOME=/tmp coverage run -p --source=lbrynet -m unittest discover -vv tests.unit
|
|
after_success:
|
|
- coverage combine
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
- stage: build
|
|
name: "Windows"
|
|
language: generic
|
|
services:
|
|
- docker
|
|
install:
|
|
- docker pull lbry/pyinstaller34_32bits:py371
|
|
script:
|
|
- python scripts/set_build.py
|
|
- docker run -v "$(pwd):/src/lbry" lbry/pyinstaller34_32bits:py371 lbry/scripts/wine_build.sh
|
|
- sudo zip -j dist/lbrynet-windows.zip dist/lbrynet.exe
|
|
deploy:
|
|
provider: releases
|
|
api_key: $GITHUB_OAUTH_TOKEN
|
|
file: dist/lbrynet-windows.zip
|
|
skip_cleanup: true
|
|
overwrite: true
|
|
draft: true
|
|
on:
|
|
tags: true
|
|
addons:
|
|
artifacts:
|
|
working_dir: dist
|
|
paths:
|
|
- lbrynet-windows.zip
|
|
target_paths:
|
|
- /daemon/build-${TRAVIS_BUILD_NUMBER}_commit-${TRAVIS_COMMIT:0:7}_branch-${TRAVIS_BRANCH}$([ ! -z ${TRAVIS_TAG} ] && echo _tag-${TRAVIS_TAG})
|
|
|
|
- &build
|
|
name: "Linux"
|
|
env: OS=linux
|
|
install:
|
|
- pip3 install pyinstaller
|
|
- pip3 install git+https://github.com/lbryio/torba.git
|
|
- python scripts/set_build.py
|
|
- pip3 install -e .
|
|
script:
|
|
- pyinstaller -F -n lbrynet lbrynet/extras/cli.py
|
|
- chmod +x dist/lbrynet
|
|
- zip -j dist/lbrynet-${OS}.zip dist/lbrynet
|
|
- ./dist/lbrynet --version
|
|
deploy:
|
|
provider: releases
|
|
api_key: $GITHUB_OAUTH_TOKEN
|
|
file: dist/lbrynet-${OS}.zip
|
|
skip_cleanup: true
|
|
overwrite: true
|
|
draft: true
|
|
on:
|
|
tags: true
|
|
addons:
|
|
artifacts:
|
|
working_dir: dist
|
|
paths:
|
|
- lbrynet-${OS}.zip
|
|
# 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})
|
|
|
|
- <<: *build
|
|
name: "Mac"
|
|
os: osx
|
|
osx_image: xcode8.3
|
|
language: generic
|
|
env: OS=mac
|
|
cache: false
|
|
before_install:
|
|
- brew upgrade python || true
|
|
- brew upgrade python || true
|
|
install:
|
|
- python3 --version
|
|
- pip3 --version
|
|
- pip3 install pyinstaller
|
|
- git clone https://github.com/lbryio/torba.git --depth 1
|
|
- sed -i -e "s/'plyvel',//" torba/setup.py
|
|
- cd torba && pip3 install -e . && cd ..
|
|
- python3 scripts/set_build.py
|
|
- pip3 install -e .
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
- $HOME/Library/Caches/pip
|
|
- $TRAVIS_BUILD_DIR/.tox
|