skip build
This commit is contained in:
parent
16c671047f
commit
7d11830751
1 changed files with 47 additions and 47 deletions
94
.travis.yml
94
.travis.yml
|
@ -31,50 +31,50 @@ jobs:
|
||||||
name: "Unit Tests w/ Python 3.6"
|
name: "Unit Tests w/ Python 3.6"
|
||||||
python: "3.6"
|
python: "3.6"
|
||||||
|
|
||||||
|
#
|
||||||
if: tag IS present
|
#if: tag IS present
|
||||||
- &build
|
# - &build
|
||||||
name: "Linux Release"
|
# name: "Linux Release"
|
||||||
python: "3.6"
|
# python: "3.6"
|
||||||
install:
|
# install:
|
||||||
- pip install pyinstaller
|
# - pip install pyinstaller
|
||||||
- pip install -e .
|
# - pip install -e .
|
||||||
|
#
|
||||||
script:
|
# script:
|
||||||
- pyinstaller -F -n aioupnp aioupnp/__main__.py
|
# - pyinstaller -F -n aioupnp aioupnp/__main__.py
|
||||||
- chmod +x dist/aioupnp
|
# - chmod +x dist/aioupnp
|
||||||
- zip -j dist/aioupnp-${OS}.zip dist/aioupnp
|
# - zip -j dist/aioupnp-${OS}.zip dist/aioupnp
|
||||||
|
#
|
||||||
env: OS=linux
|
# env: OS=linux
|
||||||
|
#
|
||||||
addons:
|
# addons:
|
||||||
artifacts:
|
# artifacts:
|
||||||
working_dir: dist
|
# working_dir: dist
|
||||||
paths:
|
# paths:
|
||||||
- aioupnp-${OS}.zip
|
# - aioupnp-${OS}.zip
|
||||||
|
#
|
||||||
- <<: *build
|
# - <<: *build
|
||||||
name: "Mac Release"
|
# name: "Mac Release"
|
||||||
os: osx
|
# os: osx
|
||||||
osx_image: xcode9.4
|
# osx_image: xcode9.4
|
||||||
language: generic
|
# language: generic
|
||||||
env: OS=mac
|
# env: OS=mac
|
||||||
install:
|
# install:
|
||||||
- pip3 install pyinstaller
|
# - pip3 install pyinstaller
|
||||||
- pip3 install -e .
|
# - pip3 install -e .
|
||||||
|
#
|
||||||
- <<: *build
|
# - <<: *build
|
||||||
name: "Windows Release"
|
# name: "Windows Release"
|
||||||
language: generic
|
# language: generic
|
||||||
services:
|
# services:
|
||||||
- docker
|
# - docker
|
||||||
install:
|
# install:
|
||||||
- docker pull cdrx/pyinstaller-windows:python3-32bit
|
# - docker pull cdrx/pyinstaller-windows:python3-32bit
|
||||||
script:
|
# script:
|
||||||
- docker run -v "$(pwd):/src/aioupnp" cdrx/pyinstaller-windows:python3-32bit aioupnp/wine_build.sh
|
# - docker run -v "$(pwd):/src/aioupnp" cdrx/pyinstaller-windows:python3-32bit aioupnp/wine_build.sh
|
||||||
- sudo zip -j dist/aioupnp-windows.zip dist/aioupnp.exe
|
# - sudo zip -j dist/aioupnp-windows.zip dist/aioupnp.exe
|
||||||
addons:
|
# addons:
|
||||||
artifacts:
|
# artifacts:
|
||||||
working_dir: dist
|
# working_dir: dist
|
||||||
paths:
|
# paths:
|
||||||
- aioupnp-windows.zip
|
# - aioupnp-windows.zip
|
||||||
|
|
Loading…
Reference in a new issue