2019-06-19 16:26:03 +02:00
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-06-19 19:08:38 +02:00
|
|
|
name: linux-amd64-2.4
|
2019-06-19 16:26:03 +02:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: lint
|
|
|
|
pull: always
|
2019-06-19 19:07:31 +02:00
|
|
|
image: chusiang/ansible:2.4
|
2019-06-19 16:26:03 +02:00
|
|
|
commands:
|
2019-06-19 19:07:31 +02:00
|
|
|
- "echo \"==> Syntax Check on Ansible 2.4 ...\""
|
2019-06-19 16:29:37 +02:00
|
|
|
- ansible --version
|
2019-06-19 19:11:48 +02:00
|
|
|
- ansible-lint tasks/main.yml
|
2019-06-19 19:07:31 +02:00
|
|
|
environment:
|
|
|
|
ANSIBLE_VERSION: 2.4
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-06-19 19:08:38 +02:00
|
|
|
name: linux-amd64-2.5
|
2019-06-19 19:07:31 +02:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: lint
|
|
|
|
pull: always
|
|
|
|
image: chusiang/ansible:2.5
|
|
|
|
commands:
|
|
|
|
- "echo \"==> Syntax Check on Ansible 2.5 ...\""
|
|
|
|
- ansible --version
|
2019-06-19 19:11:48 +02:00
|
|
|
- ansible-lint tasks/main.yml
|
2019-06-19 19:07:31 +02:00
|
|
|
environment:
|
|
|
|
ANSIBLE_VERSION: 2.5
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-06-19 19:08:38 +02:00
|
|
|
name: linux-amd64-2.6
|
2019-06-19 19:07:31 +02:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: lint
|
|
|
|
pull: always
|
|
|
|
image: chusiang/ansible:2.6
|
|
|
|
commands:
|
|
|
|
- "echo \"==> Syntax Check on Ansible 2.6 ...\""
|
|
|
|
- ansible --version
|
2019-06-19 19:11:48 +02:00
|
|
|
- ansible-lint tasks/main.yml
|
2019-06-19 19:07:31 +02:00
|
|
|
environment:
|
|
|
|
ANSIBLE_VERSION: 2.6
|
|
|
|
|
|
|
|
---
|
|
|
|
kind: pipeline
|
2019-06-19 19:08:38 +02:00
|
|
|
name: linux-amd64-2.7
|
2019-06-19 19:07:31 +02:00
|
|
|
|
|
|
|
platform:
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: lint
|
|
|
|
pull: always
|
|
|
|
image: chusiang/ansible:2.7
|
|
|
|
commands:
|
|
|
|
- "echo \"==> Syntax Check on Ansible 2.7 ...\""
|
|
|
|
- ansible --version
|
2019-06-19 19:11:48 +02:00
|
|
|
- ansible-lint tasks/main.yml
|
2019-06-19 19:07:31 +02:00
|
|
|
environment:
|
|
|
|
ANSIBLE_VERSION: 2.7
|
|
|
|
|
|
|
|
...
|