Merge "Concurrency testcases to be configured over cli"
[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
21   tasks:
22     - name: Updating yardstick -> "{{ YARDSTICK_BRANCH }}"
23       git:
24         repo: "{{ YARDSTICK_REPO }}"
25         dest: "{{ YARDSTICK_REPO_DIR }}"
26         version: "{{ YARDSTICK_BRANCH }}"
27         accept_hostkey: yes
28         recursive: no
29         force: yes