summaryrefslogtreecommitdiffstats
path: root/tests/roles/binary/tasks/buildah.yml
diff options
context:
space:
mode:
authorLokesh Mandvekar <lsm5@fedoraproject.org>2018-04-07 23:03:14 -0400
committerLokesh Mandvekar <lsm5@fedoraproject.org>2018-04-07 23:03:14 -0400
commit5cce5a1adad5629f5fa5aed7ec38543ae2ea8e8e (patch)
treec3dcd66941f5c8e5bd419520a21ec2bc98bc8135 /tests/roles/binary/tasks/buildah.yml
parent61290b1bc7bdace32a8f666ac2bfed4756ca0e14 (diff)
downloadbuildah-5cce5a1adad5629f5fa5aed7ec38543ae2ea8e8e.tar.gz
buildah-5cce5a1adad5629f5fa5aed7ec38543ae2ea8e8e.tar.xz
buildah-5cce5a1adad5629f5fa5aed7ec38543ae2ea8e8e.zip
Revert "buildah-0.16-2.git4743c2e"
This reverts commit 61290b1bc7bdace32a8f666ac2bfed4756ca0e14 since it removed the tests/ dir, which is obviously unwanted behavior.
Diffstat (limited to 'tests/roles/binary/tasks/buildah.yml')
-rw-r--r--tests/roles/binary/tasks/buildah.yml15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/roles/binary/tasks/buildah.yml b/tests/roles/binary/tasks/buildah.yml
new file mode 100644
index 0000000..5122105
--- /dev/null
+++ b/tests/roles/binary/tasks/buildah.yml
@@ -0,0 +1,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"