e160796d4e
Signed-off-by: Steve Kuznetsov <skuznets@redhat.com>
17 lines
No EOL
453 B
YAML
17 lines
No EOL
453 B
YAML
---
|
|
- name: clone bats source repo
|
|
git:
|
|
repo: "https://github.com/sstephenson/bats.git"
|
|
dest: "{{ ansible_env.GOPATH }}/src/github.com/sstephenson/bats"
|
|
version: "{{ 'pull/161/head' if xunit else 'HEAD' }}"
|
|
|
|
- name: install bats
|
|
command: "./install.sh /usr/local"
|
|
args:
|
|
chdir: "{{ ansible_env.GOPATH }}/src/github.com/sstephenson/bats"
|
|
|
|
- name: link bats
|
|
file:
|
|
src: /usr/local/bin/bats
|
|
dest: /usr/bin/bats
|
|
state: link |