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

- name: building runc for buildah runtime
  command: make
  args:
    chdir: "{{ HOME }}/go/src/github.com/opencontainers/runc"

- name: copy runc to /usr/bin
  copy: 
    remote_src: True
    src: "{{ HOME }}/go/src/github.com/opencontainers/runc/runc"
    dest: /usr/bin/runc