forked from docs/doc-exports
Reviewed-by: Goncharov, Artem <artem.goncharov@t-systems.com> Co-authored-by: gtema <artem.goncharov@gmail.com> Co-committed-by: gtema <artem.goncharov@gmail.com>
17 lines
352 B
YAML
17 lines
352 B
YAML
---
|
|
- hosts: all
|
|
roles:
|
|
- ensure-python
|
|
- ensure-pip
|
|
- ensure-virtualenv
|
|
- role: "ensure-pandoc"
|
|
vars:
|
|
ensure_pandoc_version: "2.19.2"
|
|
tasks:
|
|
- name: Install convertor
|
|
pip:
|
|
chdir: "{{ zuul.project.src_dir }}"
|
|
virtualenv: "{{ ansible_user_dir }}/.venv"
|
|
name: .
|
|
editable: "yes"
|