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.
ansible/test/integration/targets/git/tasks/setup-local-repos.yml

29 lines
684 B
YAML

---
- name: create dirs
file:
name: "{{item}}"
state: directory
with_items:
- "{{repo_dir}}/minimal"
- "{{repo_dir}}/shallow"
- name: prepare minimal git repo
shell: git init; echo "1" > a; git add a; git commit -m "1"
args:
chdir: "{{repo_dir}}/minimal"
- name: prepare git repo for shallow clone
shell: |
git init;
echo "1" > a; git add a; git commit -m "1"; git tag earlytag; git branch earlybranch;
echo "2" > a; git add a; git commit -m "2";
args:
chdir: "{{repo_dir}}/shallow"
- name: set old hash var for shallow test
command: 'git rev-parse HEAD~1'
register: git_shallow_head_1
args:
chdir: "{{repo_dir}}/shallow"