summaryrefslogtreecommitdiffstats
path: root/tests/roles/binary/tasks/buildah.yml
blob: 5122105d7f2f2dfb38f8a4e5a572b37712d6214d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
- name: pull latest buildah source from github
  git:
    repo: https://github.com/projectatomic/buildah
    dest: "{{ HOME }}/go/src/github.com/projectatomic/buildah"

- name: make binary for buildah
  command: make
  args:
    chdir: "{{ HOME }}/go/src/github.com/projectatomic/buildah"

- name: install buildah to /usr/local/bin
  command: make install
  args:
    chdir: "{{ HOME }}/go/src/github.com/projectatomic/buildah"