Skip to content

Commit e3e5f7f

Browse files
committedOct 15, 2019
Fix CI failures
1. Fix yamllint errors in .yamllint file(!) YAML lint is currently failling on its own configuration file, .yamllint. This change fixes the issues. 2. Run bindep role in Zuul jobs This fixes an issue where libffi is not available. Change-Id: Ic08a8e53a6905a68f0fe26d4b28184e62a64324f
1 parent 5478f36 commit e3e5f7f

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed
 

‎.yamllint

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
extends: default
23
ignore: |
34
.tox/
@@ -8,8 +9,8 @@ rules:
89
braces:
910
max-spaces-inside: 1
1011
comments:
11-
# Ignore first space in comment because we set default options as:
12-
#openstack_version: "pike"
1312
require-starting-space: true
13+
# Ignore comment validation in globals.yml - we break the
14+
# require-starting-space rule.
1415
ignore: |
15-
etc/kolla/globals.yml
16+
etc/kolla/globals.yml

‎tests/pre.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@
33
any_errors_fatal: true
44
vars:
55
logs_dir: "/tmp/logs"
6+
roles:
7+
- bindep
8+
- multi-node-firewall
69
tasks:
710
# We have had cases where the nodepool private IP address is not assigned,
811
# which causes hard to diagnose errors later on. Catch it early.
@@ -103,5 +106,3 @@
103106
- name: Ping across VXLAN
104107
command: ping -c1 {{ hostvars[item].api_interface_address }}
105108
with_inventory_hostnames: all
106-
roles:
107-
- multi-node-firewall

0 commit comments

Comments
 (0)
Please sign in to comment.