build using travis windows container
This commit is contained in:
parent
15341aa80e
commit
1f5698ec86
1 changed files with 40 additions and 45 deletions
85
.travis.yml
85
.travis.yml
|
@ -53,48 +53,28 @@ jobs:
|
||||||
- coverage combine lbry
|
- coverage combine lbry
|
||||||
- bash <(curl -s https://codecov.io/bash)
|
- bash <(curl -s https://codecov.io/bash)
|
||||||
|
|
||||||
- stage: build
|
|
||||||
name: "Windows"
|
|
||||||
language: generic
|
|
||||||
services:
|
|
||||||
- docker
|
|
||||||
install:
|
|
||||||
- docker pull lbry/pyinstaller34_32bits:py371
|
|
||||||
script:
|
|
||||||
- pushd lbry && python scripts/set_build.py && popd
|
|
||||||
- docker run -v "$(pwd):/src/lbry" lbry/pyinstaller34_32bits:py371 lbry/lbry/scripts/wine_build.sh
|
|
||||||
- sudo zip -j lbry/dist/lbrynet-windows.zip lbry/dist/lbrynet.exe
|
|
||||||
deploy:
|
|
||||||
provider: releases
|
|
||||||
api_key: $GITHUB_OAUTH_TOKEN
|
|
||||||
file: lbry/dist/lbrynet-windows.zip
|
|
||||||
skip_cleanup: true
|
|
||||||
overwrite: true
|
|
||||||
draft: true
|
|
||||||
on:
|
|
||||||
tags: true
|
|
||||||
addons:
|
|
||||||
artifacts:
|
|
||||||
working_dir: lbry/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
|
- &build
|
||||||
name: "Linux"
|
name: "Linux"
|
||||||
env: OS=linux
|
env: OS=linux
|
||||||
install:
|
install:
|
||||||
- pip3 install pyinstaller
|
- pip install pyinstaller
|
||||||
- cd torba && pip3 install -e . && cd ..
|
- cd torba && pip install -e . && cd ..
|
||||||
- cd lbry
|
- cd lbry
|
||||||
- python3 scripts/set_build.py
|
- python scripts/set_build.py
|
||||||
- pip3 install -e .
|
- pip install -e .
|
||||||
script:
|
script:
|
||||||
- pyinstaller -F -n lbrynet lbry/extras/cli.py
|
- pyinstaller -F -n lbrynet lbry/extras/cli.py
|
||||||
- chmod +x dist/lbrynet
|
- cd dist
|
||||||
- zip -j dist/lbrynet-${OS}.zip dist/lbrynet
|
- chmod +x lbrynet
|
||||||
- ./dist/lbrynet --version
|
- ./lbrynet --version
|
||||||
|
- zip -j lbrynet-${OS}.zip lbrynet
|
||||||
|
after_success:
|
||||||
|
- pip install awscli
|
||||||
|
- 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
|
||||||
|
- 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:
|
deploy:
|
||||||
provider: releases
|
provider: releases
|
||||||
api_key: $GITHUB_OAUTH_TOKEN
|
api_key: $GITHUB_OAUTH_TOKEN
|
||||||
|
@ -104,24 +84,39 @@ jobs:
|
||||||
draft: true
|
draft: true
|
||||||
on:
|
on:
|
||||||
tags: true
|
tags: true
|
||||||
addons:
|
|
||||||
artifacts:
|
|
||||||
working_dir: dist
|
|
||||||
paths:
|
|
||||||
- lbrynet-${OS}.zip
|
|
||||||
# artifact uploader thinks lbry 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
|
- <<: *build
|
||||||
name: "Mac"
|
name: "Mac"
|
||||||
os: osx
|
os: osx
|
||||||
osx_image: xcode8.3
|
osx_image: xcode8.3
|
||||||
language: generic
|
language: shell
|
||||||
env: OS=mac
|
env: OS=mac
|
||||||
cache: false
|
#cache: false
|
||||||
before_install:
|
before_install:
|
||||||
- brew upgrade python || true
|
- brew upgrade python || true
|
||||||
|
- pip3 install --user --upgrade pip virtualenv
|
||||||
|
- /Users/travis/Library/Python/3.7/bin/virtualenv $HOME/venv
|
||||||
|
- source $HOME/venv/bin/activate
|
||||||
|
|
||||||
|
- <<: *build
|
||||||
|
name: "Windows"
|
||||||
|
os: windows
|
||||||
|
language: shell
|
||||||
|
env:
|
||||||
|
- OS=windows
|
||||||
|
- PATH=/C/Users/travis/AppData/Roaming/Python/Python37/Scripts:/c/Python37:/c/Python37/Scripts:/C/Windows/System32/downlevel:$PATH
|
||||||
|
before_install:
|
||||||
|
- choco install python --x86
|
||||||
|
- pip install --user --upgrade pip virtualenv
|
||||||
|
- virtualenv $HOME/venv
|
||||||
|
- source $HOME/venv/Scripts/activate
|
||||||
|
- pip install pywin32
|
||||||
|
script:
|
||||||
|
- pyinstaller --additional-hooks-dir=scripts/. --icon=icons/lbry256.ico -F -n lbrynet lbry/extras/cli.py
|
||||||
|
- cd dist
|
||||||
|
- ./lbrynet.exe --version
|
||||||
|
- 7z a -tzip lbrynet-windows.zip lbrynet.exe
|
||||||
|
|
||||||
|
|
||||||
- if: tag IS present
|
- if: tag IS present
|
||||||
stage: build
|
stage: build
|
||||||
|
|
Loading…
Reference in a new issue