2021-08-18 11:05:34 +00:00
|
|
|
---
|
|
|
|
# Sigh; RHEL8 doesn't have BATS
|
|
|
|
- name: bats | fetch and unpack tarball
|
|
|
|
unarchive:
|
2021-08-30 14:20:24 +00:00
|
|
|
src: https://github.com/bats-core/bats-core/archive/v1.4.1.tar.gz
|
2021-08-18 11:05:34 +00:00
|
|
|
dest: /root
|
|
|
|
remote_src: true
|
|
|
|
|
|
|
|
- name: bats | install
|
|
|
|
command: ./install.sh /usr/local
|
|
|
|
args:
|
2021-08-30 14:20:24 +00:00
|
|
|
chdir: /root/bats-core-1.4.1
|