Skip to content

Commit

Permalink
Added automated deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
micahhausler committed May 14, 2017
1 parent f12926d commit 2f8bbcc
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 14 deletions.
37 changes: 25 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,30 @@
sudo: false
language: python
python:
- '3.5'
- '3.5'
- '3.6'
install:
- pip install coveralls flake8 nose>=1.3.0
- pip install -e .[all]
- pip install coveralls flake8 nose>=1.3.0
- pip install -e .[all]
script:
- flake8 .
- python setup.py nosetests
- python setup.py build_sphinx
- container-transform container_transform/tests/docker-compose.yml -v
- container-transform container_transform/tests/task.json --input-type ecs --output-type compose
- container-transform container_transform/tests/docker-compose.yml -v --output-type systemd
- container-transform container_transform/tests/task.json --input-type ecs --output-type systemd
after_success:
coveralls
- flake8 .
- python setup.py nosetests
- python setup.py build_sphinx
- container-transform container_transform/tests/docker-compose.yml -v
- container-transform container_transform/tests/task.json --input-type ecs --output-type
compose
- container-transform container_transform/tests/docker-compose.yml -v --output-type
systemd
- container-transform container_transform/tests/task.json --input-type ecs --output-type
systemd
after_success: coveralls
deploy:
provider: pypi
user: micahhausler
password:
secure: M7eqS/P7xC/x9mjOo91Xr6DVyHyVpYTRoarmuVc8+oKdoEStja4lQyUJjJKClgzoHJ+stHOcyFYz3awdwzqAWVsPyB4Pulx3ZkcyxGdJYDZ8cMKj94U89AjrHaG0DUnO85JuLyOAtBU2pmt4Qvmp+5gihPByltGs/EkBzfsNF04=
on:
tags: true
distributions: sdist bdist_wheel
repo: micahhausler/container-transform
branch: master
2 changes: 1 addition & 1 deletion container_transform/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.1.4'
__version__ = '1.1.5'
2 changes: 1 addition & 1 deletion docs/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ Below is a rough checklist of creating a new transformer type:
* Add client tests just to make sure the command doesn't blow up
* Add documentation and API links on the :doc:`usage` page.
* Update the usage text output on the ``README.rst`` and the :doc:`usage` page
* Add the type to the format list on the :doc:`index` and ``README.rst``
* Add the type to the format list on the :doc:`index` and ``README.rst``

Possible Transformer implementations:

Expand Down
2 changes: 2 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ v1.1.5
------

* Added Kubernetes Support
* Updatd support for docker-compose and ECS
* Properly split lines for cmd and entrypoint in ECS

v1.1.4
------
Expand Down

0 comments on commit 2f8bbcc

Please sign in to comment.