Revert "Fix linting issues found via project-config"
This has syntax errors.
This reverts commit d3128dab95
.
Change-Id: Ida6569d384f50095cc228625c7d6e73e154270ae
This commit is contained in:
parent
2fe2910b5f
commit
dcd89b2686
@ -3,9 +3,6 @@
|
||||
- name: Update apt cache
|
||||
become: yes
|
||||
command: apt-get update
|
||||
# skip linting for above comment
|
||||
tags:
|
||||
- skip_ansible_lint
|
||||
|
||||
- name: Update dnf cache
|
||||
become: yes
|
||||
@ -26,4 +23,4 @@
|
||||
command: "{{ item }}"
|
||||
with_items:
|
||||
- zypper clean
|
||||
- zypper refresh
|
||||
- zypper refresh
|
@ -1,5 +1,4 @@
|
||||
- name: include the log path role
|
||||
include_role:
|
||||
- include_role:
|
||||
name: set-zuul-log-path-fact
|
||||
|
||||
- debug:
|
||||
|
@ -1,43 +1,35 @@
|
||||
- name: Allow pushing to non-bare repo
|
||||
git_config:
|
||||
scope: local
|
||||
name: receive.denyCurrentBranch
|
||||
value: ignore
|
||||
repo: "{{ ansible_user_dir }}/{{ item.src_dir}}"
|
||||
command: "git config --local receive.denyCurrentBranch ignore"
|
||||
args:
|
||||
chdir: "{{ ansible_user_dir }}/{{ item.src_dir}}"
|
||||
with_items: "{{ zuul.projects }}"
|
||||
|
||||
- block:
|
||||
# Do not lint these tasks, gets confused by git actions that cannot be done
|
||||
# by git modules
|
||||
tags:
|
||||
- skip_ansible_lint
|
||||
- name: Synchronize src repos to workspace directory
|
||||
command: "git push --mirror git+ssh://{{ ansible_user }}@{{ ansible_host }}/{{ ansible_user_dir }}/{{ item.src_dir}}"
|
||||
args:
|
||||
chdir: "{{ zuul.executor.work_root }}/{{ item.src_dir }}"
|
||||
with_items: "{{ zuul.projects }}"
|
||||
delegate_to: localhost
|
||||
|
||||
- name: Synchronize src repos to workspace directory
|
||||
command: "git push --mirror git+ssh://{{ ansible_user }}@{{ ansible_host }}/{{ ansible_user_dir }}/{{ item.src_dir}}"
|
||||
args:
|
||||
chdir: "{{ zuul.executor.work_root }}/{{ item.src_dir }}"
|
||||
with_items: "{{ zuul.projects }}"
|
||||
delegate_to: localhost
|
||||
- name: Determine local HEAD
|
||||
shell: "git status |head -1 |awk '{ print $NF }'"
|
||||
args:
|
||||
chdir: "{{ zuul.executor.work_root }}/{{ item.src_dir }}"
|
||||
with_items: "{{ zuul.projects }}"
|
||||
delegate_to: localhost
|
||||
register: statuses
|
||||
|
||||
- name: Determine local HEAD
|
||||
shell: "git status |head -1 |awk '{ print $NF }'"
|
||||
args:
|
||||
chdir: "{{ zuul.executor.work_root }}/{{ item.src_dir }}"
|
||||
with_items: "{{ zuul.projects }}"
|
||||
delegate_to: localhost
|
||||
register: statuses
|
||||
|
||||
# Do this as a multi-line shell so that we can do the loop once
|
||||
- name: Update remote repository state correctly
|
||||
shell: |
|
||||
# Reset is needed because we pushed to a non-bare repo
|
||||
git reset --hard
|
||||
# Undo the config setting we did above
|
||||
git config --local --unset receive.denyCurrentBranch
|
||||
# checkout the branch matching the branch set up by the executor
|
||||
git checkout {{ item.1.stdout }}
|
||||
args:
|
||||
chdir: "{{ ansible_user_dir }}/{{ item.0.src_dir }}"
|
||||
with_together:
|
||||
- "{{ zuul.projects }}"
|
||||
- "{{ statuses.results }}"
|
||||
# Do this as a multi-line shell so that we can do the loop once
|
||||
- name: Update remote repository state correctly
|
||||
shell: |
|
||||
# Reset is needed because we pushed to a non-bare repo
|
||||
git reset --hard
|
||||
# Undo the config setting we did above
|
||||
git config --local --unset receive.denyCurrentBranch
|
||||
# checkout the branch matching the branch set up by the executor
|
||||
git checkout {{ item.1.stdout }}
|
||||
args:
|
||||
chdir: "{{ ansible_user_dir }}/{{ item.0.src_dir }}"
|
||||
with_together:
|
||||
- "{{ zuul.projects }}"
|
||||
- "{{ statuses.results }}"
|
||||
|
@ -1,5 +1,4 @@
|
||||
- name: include the log path role
|
||||
include_role:
|
||||
- include_role:
|
||||
name: set-zuul-log-path-fact
|
||||
|
||||
- name: Create log directories
|
||||
|
Loading…
Reference in New Issue
Block a user