diff options
author | Valentin Rothberg <rothberg@redhat.com> | 2020-06-08 12:33:35 +0200 |
---|---|---|
committer | Valentin Rothberg <rothberg@redhat.com> | 2020-06-08 15:21:34 +0200 |
commit | b6148b657661db2b9d7858102e9aa3cf6f19f47f (patch) | |
tree | ad0749e9cd6ef7e1e9c369b1f8d6ef026d637a55 /hack | |
parent | efd1422143c738ae268e4e86da05adb597c84083 (diff) | |
download | podman-b6148b657661db2b9d7858102e9aa3cf6f19f47f.tar.gz podman-b6148b657661db2b9d7858102e9aa3cf6f19f47f.tar.bz2 podman-b6148b657661db2b9d7858102e9aa3cf6f19f47f.zip |
force bats version to v1.1.0
We experienced regression when using the latest `v1.2.0-dev` bats in
Ubuntu 20.04 (see github.com/containers/libpod/pull/6418). Using
bats v1.1.0 worked in the Ubuntu test VM.
Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
Diffstat (limited to 'hack')
-rwxr-xr-x | hack/install_bats.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/hack/install_bats.sh b/hack/install_bats.sh new file mode 100755 index 000000000..00ded07a9 --- /dev/null +++ b/hack/install_bats.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +set -e + +die() { echo "${1:-No error message given} (from $(basename $0))"; exit 1; } + +buildDir=$(mktemp -d) +git clone https://github.com/bats-core/bats-core $buildDir + +pushd $buildDir +pwd +git reset --hard ${VERSION} +./install.sh /usr/local +popd + +rm -rf $buildDir |