Skip to content

Commit 75193b9

Browse files
authored
Merge pull request #276 from StackStorm/disable-ewc-unstable
Disable EWC install for unstable packages
2 parents a47144e + 8b3aafe commit 75193b9

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

.circleci/config.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,18 @@ jobs:
44
# Run Ansible-lint checks
55
ansible-lint:
66
docker:
7-
- image: williamyeh/ansible:ubuntu16.04
7+
- image: yokogawa/ansible-lint
88
steps:
99
- checkout
10-
- run:
11-
name: Install ansible-lint
12-
command: |
13-
pip install ansible-lint
14-
ansible-lint --version
1510
- run:
1611
name: Ansible YAML syntax check
1712
command: |
1813
ansible-playbook --syntax-check stackstorm.yml
1914
- run:
2015
name: Ansible-lint check
2116
command: |
22-
ansible-lint -x 204 -v roles/*/*/*.yaml roles/*/*/*.yml stackstorm.yml
17+
ansible-lint --version
18+
ansible-lint -x 106,204,208 -v roles/*/*/*.yaml roles/*/*/*.yml stackstorm.yml
2319
2420
# Run YAML lint checks
2521
yaml-lint:

stackstorm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
- StackStorm.st2chatops
1414
- StackStorm.st2smoketests
1515
- role: StackStorm.ewc
16-
when: ewc_license is defined and ewc_license is not none and ewc_license | length > 0
16+
when: ewc_license is defined and ewc_license is not none and ewc_license | length > 1
1717
- role: StackStorm.ewc_smoketests
18-
when: ewc_license is defined and ewc_license is not none and ewc_license | length > 0
18+
when: ewc_license is defined and ewc_license is not none and ewc_license | length > 1

0 commit comments

Comments
 (0)