forked from viasite-ansible/ansible-role-zsh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmolecule.yml
60 lines (53 loc) · 1.5 KB
/
molecule.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
51
52
53
54
55
56
57
58
59
60
---
dependency:
name: galaxy
driver:
name: docker
docker:
containers:
#- name: ansible-role-zsh-debian-7
# image: debian
# image_version: 7
# volume_mounts:
# - ${MOLECULE_APTPROXY_PATH}:/etc/apt/apt.conf.d/00aptproxy
#- name: ansible-role-zsh-debian-8
# image: debian
# image_version: 8
# volume_mounts:
# - ${MOLECULE_APTPROXY_PATH}:/etc/apt/apt.conf.d/00aptproxy
#- name: ansible-role-zsh-ubuntu-1404
# image: ubuntu
# image_version: 14.04
# volume_mounts:
# - ${MOLECULE_APTPROXY_PATH}:/etc/apt/apt.conf.d/00aptproxy
- name: ansible-role-zsh-ubuntu-1604
image: ubuntu
image_version: 16.04
volume_mounts:
- ${MOLECULE_APTPROXY_PATH}:/etc/apt/apt.conf.d/00aptproxy
- name: ansible-role-zsh-centos-7
image: centos
image_version: 7
#driver:
# name: vagrant
#vagrant:
# platforms:
# - name: xenial64
# box: bento/ubuntu-16.04
# providers:
# - name: virtualbox
# type: virtualbox
# instances:
# - name: vagrant-01
# raw_config_args:
# - "vm.synced_folder '${MOLECULE_APT_CONF_D_PATH}', '/etc/apt/apt.conf.d'"
ansible:
playbook: tests/playbook.yml
group_vars:
all:
zsh_user: ${MOLECULE_ZSH_USER}
zsh_antigen_bundles_extras:
- { name: test/in-list, when: true }
- { name: test/not-in-list, when: false }
- { name: test/command-exists, command: zsh }
- { name: test/command-not-exists, command: not-exists-commanddd }