File: setup-local-repos.yml

package info (click to toggle)
ansible-core 2.19.0~beta6-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 32,628 kB
  • sloc: python: 180,313; cs: 4,929; sh: 4,601; xml: 34; makefile: 21
file content (78 lines) | stat: -rw-r--r-- 1,940 bytes parent folder | download | duplicates (2)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
- name: SETUP-LOCAL-REPOS | create dirs
  file:
    name: "{{ item }}"
    state: directory
  with_items:
    - "{{ repo_dir }}/minimal"
    - "{{ repo_dir }}/shallow"
    - "{{ repo_dir }}/shallow_branches"
    - "{{ repo_dir }}/tag_force_push"

- name: SETUP-LOCAL-REPOS | prepare minimal git repo
  shell: |
    set -eEu

    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: |
    set -eEu

    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: SETUP-LOCAL-REPOS | prepare tmp git repo with two branches
  shell: |
    set -eEu

    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"

- name: SETUP-LOCAL-REPOS | get ref head for test_branch
  shell: git checkout test_branch && git rev-parse HEAD
  args:
    chdir: "{{ repo_dir }}/shallow_branches"
  register: ref_head_id

- name: SETUP-LOCAL-REPOS | store ref head for test_branch
  set_fact:
    test_branch_ref_head_id: "{{ ref_head_id.stdout }}"

# Make this a bare one, we need to be able to push to it from clones
# We make the repo here for consistency with the other repos,
# but we finish setting it up in forcefully-fetch-tag.yml.
- name: SETUP-LOCAL-REPOS | prepare tag_force_push git repo
  shell: |
    set -eEu

    git init --bare
  args:
    chdir: "{{ repo_dir }}/tag_force_push"