mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
872 B
YAML
43 lines
872 B
YAML
8 years ago
|
---
|
||
|
|
||
|
- name: initial checkout
|
||
|
git:
|
||
|
repo: "{{ repo_format1 }}"
|
||
|
dest: "{{ repo_dir }}/format1"
|
||
|
register: git_result
|
||
|
|
||
|
- name: verify information about the initial clone
|
||
|
assert:
|
||
|
that:
|
||
|
- "'before' in git_result"
|
||
|
- "'after' in git_result"
|
||
|
- "not git_result.before"
|
||
|
- "git_result.changed"
|
||
|
|
||
|
- name: repeated checkout
|
||
|
git:
|
||
|
repo: "{{ repo_format1 }}"
|
||
|
dest: "{{ repo_dir }}/format1"
|
||
|
register: git_result2
|
||
|
|
||
|
- name: check for tags
|
||
|
stat:
|
||
|
path: "{{ repo_dir }}/format1/.git/refs/tags"
|
||
|
register: tags
|
||
|
|
||
|
- name: check for HEAD
|
||
|
stat:
|
||
|
path: "{{ repo_dir }}/format1/.git/HEAD"
|
||
|
register: head
|
||
|
|
||
|
- name: assert presence of tags/trunk/branches
|
||
|
assert:
|
||
|
that:
|
||
|
- "tags.stat.isdir"
|
||
|
- "head.stat.isreg"
|
||
|
|
||
|
- name: verify on a reclone things are marked unchanged
|
||
|
assert:
|
||
|
that:
|
||
|
- "not git_result2.changed"
|