forked from jalessio/ansible-role-ros
-
Notifications
You must be signed in to change notification settings - Fork 3
/
.kitchen.yml
50 lines (45 loc) · 1.14 KB
/
.kitchen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
driver:
name: docker
use_sudo: false
provisioner:
require_chef_omnibus: false
name: ansible_playbook
hosts: all
require_ansible_repo: true
ansible_verbose: true
platforms:
# Ubuntu 14.04 / Trusty
- name: ubuntu-trusty
driver_config:
image: ubuntu:trusty
# Ubuntu 12.04 / Precise
- name: ubuntu-precise
driver_config:
image: ubuntu:precise
# Docs @ https://github.com/neillturner/kitchen-ansible/blob/master/provisioner_options.md
suites:
# ROS Indigo supports Trusty and Saucy
# http://wiki.ros.org/indigo/Installation/Ubuntu
- name: indigo
attributes:
extra_vars:
ros_release: indigo
excludes:
- ubuntu-precise
# ROS Hyrdro supports Raring, Quantal, and Precise
# http://wiki.ros.org/hydro/Installation/Ubuntu
- name: hydro
attributes:
extra_vars:
ros_release: hydro
excludes:
- ubuntu-trusty
# ROS Groovy support Quantal, Precise, and Oneiric (No support for Oneiric here).
# http://wiki.ros.org/groovy/Installation/Ubuntu
- name: groovy
attributes:
extra_vars:
ros_release: groovy
excludes:
- ubuntu-trusty