removed ansible_python_interpreter
* added missed renames of ansible_deps to ansible_test_deps * removed acidential inventory.dynamic file * modified README for ansible_test_deps role
This commit is contained in:
parent
822624d061
commit
57391f49ba
5 changed files with 9 additions and 14 deletions
|
@ -1 +1 @@
|
|||
localhost ansible_connection=local ansible_python_interpreter="/usr/bin/env python"
|
||||
localhost ansible_connection=local
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
localhost ansible_connection=local ansible_python_interpreter="/usr/bin/env python"
|
||||
[dynamic_hosts]
|
||||
54.157.26.110 ansible_ssh_user=root ansible_ssh_private_key_file=/Users/meyers/Dropbox/.ssh/Ansible_chris_meyers.pem
|
|
@ -36,7 +36,7 @@
|
|||
make_target: "non_destructive"
|
||||
#pre_tasks:
|
||||
roles:
|
||||
- { role: ansible_deps, tags: ansible_deps }
|
||||
- { role: ansible_test_deps, tags: ansible_test_deps }
|
||||
- { role: run_integration,
|
||||
tags: run_integration,
|
||||
run_integration_test_flags: "{{ test_flags }}",
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
[![Build Status](https://travis-ci.org/chrismeyersfsu/role-ansible_deps.svg)](https://travis-ci.org/chrismeyersfsu/role-ansible_deps)
|
||||
[![Build Status](https://travis-ci.org/chrismeyersfsu/ansible_test_deps.svg)](https://travis-ci.org/chrismeyersfsu/ansible_test_deps)
|
||||
|
||||
ansible_deps
|
||||
ansible_test_deps
|
||||
=========
|
||||
|
||||
Install needed packages to run ansible integration tests.
|
||||
|
||||
This role is periodically synced from ansible core repo to chrismeyersfsu/role-ansible_deps so that automated tests may run and so this role is accessible from galaxy.
|
||||
|
|
|
@ -4,21 +4,21 @@
|
|||
gather_facts: false
|
||||
vars:
|
||||
inventory:
|
||||
- name: ansible_deps_host_1
|
||||
- name: ansible_test_deps_host_1
|
||||
image: "chrismeyers/centos6"
|
||||
- name: ansible_deps_host_2
|
||||
- name: ansible_test_deps_host_2
|
||||
image: "chrismeyers/ubuntu12.04"
|
||||
- name: ansible_deps_host_3
|
||||
- name: ansible_test_deps_host_3
|
||||
image: "ubuntu-upstart:14.04"
|
||||
roles:
|
||||
- { role: provision_docker, provision_docker_company: 'ansible', provision_docker_inventory: "{{ inventory }}" }
|
||||
|
||||
- name: Run ansible_deps Tests
|
||||
- name: Run ansible_test_deps Tests
|
||||
hosts: docker_containers
|
||||
vars:
|
||||
git_dir: "/tmp/ansible"
|
||||
roles:
|
||||
- { role: ansible_deps }
|
||||
- { role: ansible_test_deps }
|
||||
tasks:
|
||||
- name: Clone ansible
|
||||
git:
|
||||
|
|
Loading…
Reference in a new issue