Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
---
language: python
python: "2.7"

# Run jobs in VMs - sudo is required by ansible tests.
sudo: required

# Install ansible
addons:
apt:
packages:
- gcc
- python-apt
- python-virtualenv
- realpath

# Create a build matrix for the different test jobs.
env:
matrix:
# Run python style checks.
- TOX_ENV=pep8
# Build documentation.
- TOX_ENV=docs
# Run python2.7 unit tests.
- TOX_ENV=py27

install:
# Install tox in a virtualenv to ensure we have an up to date version.
- pip install -U pip
- pip install tox

script:
# Run the tox environment.
- tox -e ${TOX_ENV}
2 changes: 1 addition & 1 deletion docker/fluentd/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ RUN chmod 755 /usr/local/bin/kolla_extend_start
{{ macros.install_fluent_plugins(fluentd_plugins | customizable("plugins")) }}

# Build and install Fluentd output plugin for Monasca Log API
ARG monasca_output_plugin_tag=0.1.0
ARG monasca_output_plugin_tag=0.1.1
ARG monasca_output_plugin_url=https://github.com/monasca/fluentd-monasca/archive/$monasca_output_plugin_tag.tar.gz
ADD $monasca_output_plugin_url /tmp/fluentd-monasca.tar.gz
RUN tar -xvf /tmp/fluentd-monasca.tar.gz -C /tmp \
Expand Down