54 lines
1.4 KiB
YAML
54 lines
1.4 KiB
YAML
- yum:
|
|
name: git
|
|
state: present
|
|
|
|
- git:
|
|
repo: https://github.com/thoto/cobald
|
|
dest: "~{{unpriv_user}}/cobald-src"
|
|
version: bugfix/mixed_construction_methods
|
|
become: yes
|
|
become_user: "{{unpriv_user}}"
|
|
register: cobald_git_pull
|
|
|
|
- git:
|
|
repo: https://github.com/MatterMiners/tardis
|
|
dest: "~{{unpriv_user}}/tardis-src"
|
|
version: master
|
|
become: yes
|
|
become_user: "{{unpriv_user}}"
|
|
register: tardis_git_pull
|
|
|
|
- name: run pip install
|
|
docker_container:
|
|
image: cobald
|
|
name: "cobald-src-{{item.name}}-install"
|
|
volumes:
|
|
- "~{{unpriv_user}}/{{item.name}}-src:/usr/local/src/{{item.name}}:rw"
|
|
state: started
|
|
detach: False
|
|
cleanup: True
|
|
user: 1000:1000 # FIXME
|
|
entrypoint: ""
|
|
command: |
|
|
bash -c 'HOME=/tmp pip3 install --editable /usr/local/src/{{item.name}}'
|
|
with_items:
|
|
- name: cobald
|
|
run: "{{cobald_git_pull.changed}}"
|
|
- name: tardis
|
|
run: "{{tardis_git_pull.changed}}"
|
|
when: item.run
|
|
|
|
- docker_container:
|
|
name: cobald-dev
|
|
image: cobald
|
|
volumes:
|
|
- "~{{unpriv_user}}/cobald:/etc/cobald"
|
|
- "~{{unpriv_user}}/cobald/modules:/usr/local/src/cobaldmodules"
|
|
- "~{{unpriv_user}}/cobald-src:/usr/local/src/cobald:ro"
|
|
- "~{{unpriv_user}}/tardis-src:/usr/local/src/tardis:ro"
|
|
state: started
|
|
detach: True
|
|
cleanup: True
|
|
interactive: True
|
|
command: /bin/bash
|