Try testing PyInstaller builds on CircleCI

This commit is contained in:
Chris Wood 2019-10-04 11:39:14 -04:00
parent 7f17a92719
commit eef66e3ea3

View File

@ -30,6 +30,7 @@ workflows:
# Other assorted tasks and configurations
- "lint"
- "pyinstaller"
- "deprecations"
- "c-locale"
# Any locale other than C or UTF-8.
@ -87,6 +88,28 @@ jobs:
command: |
~/.local/bin/tox -e codechecks
pyinstaller:
docker:
- image: "circleci/python:2"
steps:
- "checkout"
- run:
name: "Install tox"
command: |
pip install --user tox
- run:
name: "Make PyInstaller executable"
command: |
~/.local/bin/tox -e pyinstaller
- run:
name: "Test PyInstaller executable"
command: |
dist/Tahoe-LAFS/tahoe --version
debian-9: &DEBIAN
docker:
- image: "tahoelafsci/debian:9"