42 lines
972 B
YAML
42 lines
972 B
YAML
- name: Install pip using get-pip.py
|
|
become: yes
|
|
shell: |
|
|
curl https://bootstrap.pypa.io/get-pip.py | {{ python_ver }}
|
|
|
|
- name: Install required packages
|
|
become: yes
|
|
vars:
|
|
required_packages: ["{{ python_ver }}-virtualenv", 'git', 'gcc', "{{
|
|
python_ver }}-devel", 'wget']
|
|
yum:
|
|
name: "{{ required_packages }}"
|
|
state: present
|
|
|
|
- name: "Ensure {{ test.dir }} doesn't exist"
|
|
file:
|
|
path: "{{ test.dir }}"
|
|
state: absent
|
|
|
|
- name: Clone Tobiko project
|
|
git:
|
|
repo: 'https://review.opendev.org/x/tobiko'
|
|
dest: "{{ test.dir }}"
|
|
when: test.refsec == ''
|
|
|
|
- name: Checkout specific gerrit patch
|
|
git:
|
|
repo: 'https://review.opendev.org/x/tobiko'
|
|
dest: "{{ test.dir }}"
|
|
refspec: "{{ test.refsec }}"
|
|
version: 'FETCH_HEAD'
|
|
when: test.refsec != ''
|
|
|
|
- name: output gerrit patch log
|
|
shell: |
|
|
git log -n 1
|
|
register: git_log
|
|
args:
|
|
chdir: "{{ test.dir }}"
|
|
|
|
- debug: var=git_log.stdout_lines
|