File tree Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Expand file tree Collapse file tree 2 files changed +35
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ language : python
3
+ python : " 2.7"
4
+
5
+ # Run jobs in VMs - sudo is required by ansible tests.
6
+ sudo : required
7
+
8
+ # Install ansible
9
+ addons :
10
+ apt :
11
+ packages :
12
+ - gcc
13
+ - python-apt
14
+ - python-virtualenv
15
+ - realpath
16
+
17
+ # Create a build matrix for the different test jobs.
18
+ env :
19
+ matrix :
20
+ # Run python style checks.
21
+ - TOX_ENV=pep8
22
+ # Build documentation.
23
+ - TOX_ENV=docs
24
+ # Run python2.7 unit tests.
25
+ - TOX_ENV=py27
26
+
27
+ install :
28
+ # Install tox in a virtualenv to ensure we have an up to date version.
29
+ - pip install -U pip
30
+ - pip install tox
31
+
32
+ script :
33
+ # Run the tox environment.
34
+ - tox -e ${TOX_ENV}
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ RUN chmod 755 /usr/local/bin/kolla_extend_start
75
75
{{ macros.install_fluent_plugins(fluentd_plugins | customizable("plugins")) }}
76
76
77
77
# Build and install Fluentd output plugin for Monasca Log API
78
- ARG monasca_output_plugin_tag=0.1.0
78
+ ARG monasca_output_plugin_tag=0.1.1
79
79
ARG monasca_output_plugin_url=https://github.com/monasca/fluentd-monasca/archive/$monasca_output_plugin_tag.tar.gz
80
80
ADD $monasca_output_plugin_url /tmp/fluentd-monasca.tar.gz
81
81
RUN tar -xvf /tmp/fluentd-monasca.tar.gz -C /tmp \
You can’t perform that action at this time.
0 commit comments