lbry-sdk/.travis.yml

111 lines
3.9 KiB
YAML
Raw Normal View History

2019-12-06 00:30:37 +01:00
dist: xenial
2017-02-15 18:10:40 +01:00
language: python
2018-07-29 06:24:38 +02:00
python: "3.7"
2017-02-15 18:10:40 +01:00
2018-07-22 01:32:05 +02:00
jobs:
include:
2017-10-25 18:26:04 +02:00
2018-07-27 01:18:48 +02:00
- stage: code quality
2019-06-20 21:26:54 +02:00
name: "pylint & mypy"
2018-07-27 01:18:48 +02:00
install:
2019-12-08 05:38:54 +01:00
- make install tools
2019-06-20 21:26:54 +02:00
script: make lint
2018-07-27 01:18:48 +02:00
- stage: test
name: "Unit Tests"
2018-07-27 01:18:48 +02:00
install:
2019-12-08 05:38:54 +01:00
- make install tools
script:
2019-06-21 03:48:16 +02:00
- cd lbry && HOME=/tmp coverage run -p --source=lbry -m unittest discover -vv tests.unit
2018-07-27 23:56:13 +02:00
after_success:
2019-06-20 22:06:21 +02:00
- coverage combine lbry/
- name: "Integration Tests"
2019-01-24 00:04:16 +01:00
install:
2019-06-20 22:06:21 +02:00
- pip install coverage tox-travis
2019-08-21 17:51:02 +02:00
- sudo mount -o mode=1777,nosuid,nodev -t tmpfs tmpfs /tmp
2019-06-20 22:19:19 +02:00
script: cd lbry && tox
2019-06-20 21:26:54 +02:00
after_success:
2019-06-20 22:19:19 +02:00
- coverage combine lbry
2019-04-06 22:29:59 +02:00
- name: "Run Examples"
install:
2019-12-08 05:38:54 +01:00
- make install tools
2019-04-06 22:29:59 +02:00
script:
2019-06-21 03:48:16 +02:00
- cd lbry && HOME=/tmp coverage run -p --source=lbry scripts/generate_json_api.py
2019-04-06 22:29:59 +02:00
after_success:
2019-06-20 22:06:21 +02:00
- coverage combine lbry
2019-04-06 22:29:59 +02:00
2018-07-29 06:16:57 +02:00
- &build
2019-06-25 03:52:00 +02:00
stage: build
2018-07-29 06:16:57 +02:00
name: "Linux"
env: OS=linux
2018-07-27 00:08:26 +02:00
install:
2019-06-25 05:03:39 +02:00
- pip install pyinstaller awscli
- python docker/set_build.py
- pip install -e torba/.
- pip install -e lbry/.
script:
- pyinstaller -F -n lbrynet lbry/lbry/extras/cli.py
- chmod +x dist/lbrynet
- zip --junk-paths lbrynet-${OS}.zip dist/lbrynet
2019-06-25 20:21:14 +02:00
- shasum -a 256 -b lbrynet-${OS}.zip
- dist/lbrynet --version
2019-06-24 18:35:37 +02:00
after_success:
- aws configure set aws_access_key_id $ARTIFACTS_KEY
- aws configure set aws_secret_access_key $ARTIFACTS_SECRET
- aws configure set region us-east-1
2019-06-25 04:23:28 +02:00
- export S3_PATH="daemon/build-${TRAVIS_BUILD_NUMBER}_commit-${TRAVIS_COMMIT:0:7}_branch-${TRAVIS_BRANCH}$([ ! -z ${TRAVIS_TAG} ] && echo _tag-${TRAVIS_TAG})"
- aws s3 cp lbrynet-${OS}.zip s3://build.lbry.io/${S3_PATH}/lbrynet-${OS}.zip
# deploy:
# provider: releases
# api_key:
# secure: "unnR+aSJ1937Cl1PyBBZzGuZvV5W5TGcXELhXTgyOeeI6FgO/j80qmbNxJDA7qdFH/hvVicQFWoflhZu2dxN5rYP5BQJW3q3XoOLY3XAc1s1vicFkwqn3TIfdFiJTz+/D9eBUBBhHKeYFxm3M+thvklTLgjKl6fflh14NfGuNTevK9yQke8wewW3f9UmFTo1qNOPF1OsTZRbwua6oQYa59P+KukoPt4Dsu1VtILtTkj7hfEsUL79cjotwO3gkhYftxbl/xeDSZWOt+9Nhb8ZKmQG/uDx4JiTMm5lWRk4QB7pUujZ1CftxCYWz/lJx9nuJpdCOgP624tcHymErNlD+vGLwMTNslcXGYkAJH6xvGyxBJ+Obc8vRVnZbRM26BfH34TcPK1ueRxHSrDUbzMIIUsgcoZAxBuim8uDPp+K7bGqiygzSs2vQfr9U5Jhe9/F8sPdtNctfJZEfgmthNTeVFjyNsGIfIt754uGSfACqM7wDLh6fbKx7M+FHlNyOdvYCrbKUOAYXmTikYIpVDvlaaeMO+N+uW8Rhvm1j+JU7CVwhMavLySaPVc6Dt5OxiMMmxw9mVrjW9bBPjS5AkrS5MOA13T5wapoLzH6+gE92U4HzA6ilMcwRaQPSFnK2JU7tzyt2Wy1PH4MjHowXI2WyICG1x510dD3tX1P/1px8ro="
# file: lbrynet-${OS}.zip
# skip_cleanup: true
# overwrite: true
# draft: true
# on:
# tags: true
2018-07-29 06:16:57 +02:00
- <<: *build
name: "Mac"
os: osx
osx_image: xcode8.3
2019-06-24 18:35:37 +02:00
language: shell
2018-07-29 06:16:57 +02:00
env: OS=mac
before_install:
- brew uninstall mercurial
- brew upgrade python || true
2019-06-24 18:35:37 +02:00
- pip3 install --user --upgrade pip virtualenv
2019-10-18 07:21:27 +02:00
- /Users/travis/Library/Python/3.7/bin/virtualenv --clear $HOME/venv
2019-06-24 18:35:37 +02:00
- source $HOME/venv/bin/activate
2019-06-25 05:03:39 +02:00
before_cache:
- brew cleanup
2019-06-24 18:35:37 +02:00
- <<: *build
name: "Windows"
os: windows
language: shell
env:
- OS=windows
- PATH=/c/Python37:/c/Python37/Scripts:/C/Windows/System32/downlevel:$PATH
2019-06-24 18:35:37 +02:00
before_install:
2019-10-16 16:31:57 +02:00
- choco install python --version=3.7.4 --x86
- python -m pip install --upgrade pip
2019-06-24 18:35:37 +02:00
- pip install pywin32
script:
- pyinstaller --additional-hooks-dir=lbry/scripts/. --icon=lbry/icons/lbry256.ico -F -n lbrynet lbry/lbry/extras/cli.py
2019-06-24 18:35:37 +02:00
- cd dist
- 7z a -tzip lbrynet-windows.zip lbrynet.exe
2019-06-25 20:21:14 +02:00
- sha256sum -b lbrynet-windows.zip
- ./lbrynet.exe --version
2018-07-07 00:31:35 +02:00
cache:
directories:
2019-06-25 04:23:28 +02:00
- $HOME/venv
2018-07-07 00:31:35 +02:00
- $HOME/.cache/pip
- $HOME/Library/Caches/pip
2019-06-25 05:03:39 +02:00
- $HOME/Library/Caches/Homebrew
2018-07-07 00:31:35 +02:00
- $TRAVIS_BUILD_DIR/.tox