Add current Debian stable

This commit is contained in:
Jean-Paul Calderone 2018-06-08 15:52:29 -04:00
parent c16026bd88
commit 13bcb26129

View File

@ -6,7 +6,8 @@ workflows:
ci:
jobs:
- "lint"
- "tests"
- "debian-8"
- "debian-9"
jobs:
lint:
@ -22,7 +23,7 @@ jobs:
pip install --user tox
~/.local/bin/tox -e codechecks
tests:
debian-8:
docker:
- image: "debian:8"
@ -48,3 +49,30 @@ jobs:
name: "Run test suite"
command: |
tests/bin/tox -e py27
debian-9:
docker:
- image: "debian:9"
steps:
- "checkout"
- run:
name: "Bootstrap test environment"
command: |
apt-get --quiet update
apt-get --quiet --yes install \
build-essential \
python2.7 \
python2.7-dev \
libffi-dev \
libssl-dev \
libyaml-dev \
virtualenv
virtualenv --python python2.7 tests
tests/bin/pip install tox
- run:
name: "Run test suite"
command: |
tests/bin/tox -e py27