Skip to content

Commit

Permalink
Added storage the built wheel in order to allow downloading. (#201)
Browse files Browse the repository at this point in the history
Added a link allowing to download the wheel built by the latest pipeline (though within a zip archive, IDK the way to disable it currently) without sign in to GitHub.

Co-Authored-By: Jeff Irion <JeffLIrion@users.noreply.github.com>

Co-authored-by: Jeff Irion <JeffLIrion@users.noreply.github.com>
  • Loading branch information
KOLANICH and JeffLIrion committed May 29, 2022
1 parent bf4d348 commit ba3fb4b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,8 @@ jobs:
run: |
if python --version 2>&1 | grep -q "Python 2" || python --version 2>&1 | grep -q "Python 3.5" || python --version 2>&1 | grep -q "Python 3.6" ; then for synctest in $(cd tests && ls test*.py | grep -v async); do python -m unittest discover -s tests/ -t . -p "$synctest" || exit 1; done; fi
if python --version 2>&1 | grep -q "Python 3.7" || python --version 2>&1 | grep -q "Python 3.8" || python --version 2>&1 | grep -q "Python 3.9" || python --version 2>&1 | grep -q "Python 3.10"; then coverage run --source adb_shell -m unittest discover -s tests/ -t . && coverage report -m && coveralls; fi
- name: Upload wheel as a workflow artifact
uses: actions/upload-artifact@v2
with:
name: wheel
path: dist/*.whl
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ adb\_shell

Documentation for this package can be found at https://adb-shell.readthedocs.io/.

Prebuilt wheel can be downloaded from `nightly.link <https://nightly.link/JeffLIrion/adb_shell/workflows/python-package/master/wheel.zip>`_.

This Python package implements ADB shell and FileSync functionality. It originated from `python-adb <https://github.com/google/python-adb>`_.

Installation
Expand Down

0 comments on commit ba3fb4b

Please sign in to comment.