diff options
author | Emma Foley <emma.l.foley@intel.com> | 2018-03-02 14:06:26 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2018-03-02 14:06:26 +0000 |
commit | f28354a8d0c7e3aa190d8c71391d03be4608c70d (patch) | |
tree | 6dad11a6a366d7fcb222ffe6009ae468e16695f6 /ansible/clone_repos.yml | |
parent | 2736a90663e8d29cc968a5dac16b7606f9554001 (diff) | |
parent | f0edf98fb3aeec720c18636a600f91f5031e9f88 (diff) |
Merge "remove releng from Dockerfile and elsewhere"
Diffstat (limited to 'ansible/clone_repos.yml')
-rw-r--r-- | ansible/clone_repos.yml | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/ansible/clone_repos.yml b/ansible/clone_repos.yml index 6f69b6b15..f35be0016 100644 --- a/ansible/clone_repos.yml +++ b/ansible/clone_repos.yml @@ -17,21 +17,8 @@ YARDSTICK_REPO: "{{ lookup('env', 'YARDSTICK_REPO')|default('https://gerrit.opnfv.org/gerrit/yardstick', true) }}" YARDSTICK_REPO_DIR: "{{ lookup('env', 'YARDSTICK_REPO_DIR')|default('/home/opnfv/repos/yardstick', true) }}" YARDSTICK_BRANCH: "{{ lookup('env', 'YARDSTICK_BRANCH')|default('master', true) }}" - RELENG_REPO: "{{ lookup('env', 'RELENG_REPO')|default('https://gerrit.opnfv.org/gerrit/releng', true) }}" - RELENG_REPO_DIR: "{{ lookup('env', 'RELENG_REPO_DIR')|default('/home/opnfv/repos/releng', true) }}" - RELENG_BRANCH: "{{ lookup('env', 'RELENG_BRANCH')|default('master', true) }}" - tasks: - - name: Updating releng -> "{{ RELENG_BRANCH }}" - git: - repo: "{{ RELENG_REPO }}" - dest: "{{ RELENG_REPO_DIR }}" - version: "{{ RELENG_BRANCH }}" - accept_hostkey: yes - recursive: no - force: yes - - name: Updating yardstick -> "{{ YARDSTICK_BRANCH }}" git: repo: "{{ YARDSTICK_REPO }}" |