summaryrefslogtreecommitdiffstats
path: root/setup-bwlp/tasks/main.yml
blob: 8804936d34fc5d32530be351a1bfb31bd0abb12d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
- include: tasks/distro.yml

- name: mltk | Install dependencies
  package: name={{ item }} state=installed
  with_items: "{{ pkgnames }}"

- name: mltk | Checkout repository
  git:
    repo: "{{ gitsource }}"
    dest: "{{ gittarget }}"
    version: "{{ gitbranch }}"
    depth: 1

- name: mltk | Build bwlp target
  shell: "{{ gittarget }}/mltk bwlp -b -i"