2023-02-23 11:47:58 +00:00
|
|
|
---
|
|
|
|
# Sigh; RHEL8 doesn't have BATS
|
|
|
|
- name: bats | fetch and unpack tarball
|
|
|
|
unarchive:
|
2023-07-12 09:57:09 +00:00
|
|
|
src: https://github.com/bats-core/bats-core/archive/v1.9.0.tar.gz
|
2023-02-23 11:47:58 +00:00
|
|
|
dest: /root
|
|
|
|
remote_src: true
|
|
|
|
|
|
|
|
- name: bats | install
|
|
|
|
command: ./install.sh /usr/local
|
|
|
|
args:
|
2023-07-12 09:57:09 +00:00
|
|
|
chdir: /root/bats-core-1.9.0
|