Merge "Stop cloning from review.o.o for dlrn"

This commit is contained in:
Jenkins
2017-03-26 00:52:30 +00:00
committed by Gerrit Code Review
3 changed files with 4 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ description:
options:
host:
description:
- The content of the ZUUL_HOST variable
- The content of the ZUUL_URL variable
required: True
changes:
description:
@@ -36,7 +36,7 @@ options:
EXAMPLES = '''
- zuul_deps:
host: review.openstack.org
host: https://review.openstack.org
changes: "openstack/tripleo-heat-templates:master:refs/changes/88/296488/1^openstack/instack-undercloud:master:refs/changes/84/315184/5"
'''

View File

@@ -45,7 +45,7 @@
- name: Clone the gated change
git:
repo: 'https://{{ artg_change.host }}/{{ artg_change.project }}'
repo: '{{ artg_change.host }}/{{ artg_change.project }}'
dest: '{{ ansible_user_dir }}/DLRN/data/{{ project_name_mapped.stdout }}'
refspec: '{{ artg_change.refspec }}'
version: 'FETCH_HEAD'

View File

@@ -88,7 +88,7 @@
- name: Parse Zuul changes
zuul_deps:
host: "{{ lookup('env', 'ZUUL_HOST')|default('review.openstack.org', true) }}"
host: "{{ lookup('env', 'ZUUL_URL')|default('https://review.openstack.org', true) }}"
changes: "{{ lookup('env', 'ZUUL_CHANGES') }}"
branch: "{{ lookup('env', 'ZUUL_BRANCH') }}"
when: zuul_changes != ""