Merge "Add yardstick report for each task"
[yardstick.git] / ansible / clone_repos.yml
1 # Copyright (c) 2017 Intel Corporation.
2 #
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6 #
7 #      http://www.apache.org/licenses/LICENSE-2.0
8 #
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14 ---
15 - hosts: yardstick
16   vars:
17     YARDSTICK_REPO: "{{ lookup('env', 'YARDSTICK_REPO')|default('https://gerrit.opnfv.org/gerrit/yardstick', true) }}"
18     YARDSTICK_REPO_DIR: "{{ lookup('env', 'YARDSTICK_REPO_DIR')|default('/home/opnfv/repos/yardstick', true) }}"
19     YARDSTICK_BRANCH: "{{ lookup('env', 'YARDSTICK_BRANCH')|default('master', true) }}"
20     RELENG_REPO: "{{ lookup('env', 'RELENG_REPO')|default('https://gerrit.opnfv.org/gerrit/releng', true) }}"
21     RELENG_REPO_DIR: "{{ lookup('env', 'RELENG_REPO_DIR')|default('/home/opnfv/repos/releng', true) }}"
22     RELENG_BRANCH: "{{ lookup('env', 'RELENG_BRANCH')|default('master', true) }}"
23
24
25   tasks:
26     - name: Updating releng -> "{{ RELENG_BRANCH }}"
27       git:
28         repo: "{{ RELENG_REPO }}"
29         dest: "{{ RELENG_REPO_DIR }}"
30         version: "{{ RELENG_BRANCH }}"
31         accept_hostkey: yes
32         recursive: no
33         force: yes
34
35     - name: Updating yardstick -> "{{ YARDSTICK_BRANCH }}"
36       git:
37         repo: "{{ YARDSTICK_REPO }}"
38         dest: "{{ YARDSTICK_REPO_DIR }}"
39         version: "{{ YARDSTICK_BRANCH }}"
40         accept_hostkey: yes
41         recursive: no
42         force: yes