mirror of
				https://github.com/ansible-collections/community.general.git
				synced 2024-09-14 20:13:21 +02:00 
			
		
		
		
	* [git] Fix fetching branch of shallow clone * Use absolute file:// paths to make sure git uses shallow clones * Improve tests * Fix sanity errors * Match style according to other (depth) tests * Improve tests Now they will fail without the fix of this PR
		
			
				
	
	
		
			36 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
| - name: SETUP-LOCAL-REPOS | create dirs
 | |
|   file:
 | |
|     name: "{{ item }}"
 | |
|     state: directory
 | |
|   with_items:
 | |
|     - "{{ repo_dir }}/minimal"
 | |
|     - "{{ repo_dir }}/shallow"
 | |
|     - "{{ repo_dir }}/shallow_branches"
 | |
| 
 | |
| - name: SETUP-LOCAL-REPOS | prepare minimal git repo
 | |
|   shell: git init; echo "1" > a; git add a; git commit -m "1"
 | |
|   args:
 | |
|     chdir: "{{ repo_dir }}/minimal"
 | |
| 
 | |
| - name: SETUP-LOCAL-REPOS | 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: SETUP-LOCAL-REPOS | set old hash var for shallow test
 | |
|   command: 'git rev-parse HEAD~1'
 | |
|   register: git_shallow_head_1
 | |
|   args:
 | |
|     chdir: "{{ repo_dir }}/shallow"
 | |
| 
 | |
| - name: prepare tmp git repo with two branches
 | |
|   shell: |
 | |
|     git init
 | |
|     echo "1" > a; git add a; git commit -m "1"
 | |
|     git checkout -b test_branch; echo "2" > a; git commit -m "2 on branch" a
 | |
|     git checkout -b new_branch; echo "3" > a; git commit -m "3 on new branch" a
 | |
|   args:
 | |
|     chdir: "{{ repo_dir }}/shallow_branches"
 |