diff options
author | Mateusz Pilat <m.pilat@partner.samsung.com> | 2020-05-20 14:58:50 +0200 |
---|---|---|
committer | Mateusz Pilat <m.pilat@partner.samsung.com> | 2020-05-20 15:00:15 +0200 |
commit | f030b067a4c7da273e5546c6e27b91682e95f6c3 (patch) | |
tree | 7ac5cd7e994c4198432d81e39479b3047a4ceb64 /ansible/test/bin | |
parent | 3e8a8868d7ef936ad85a360845d2c071d585c57b (diff) |
Fix: Fix docker cli version mismatch
Docker cli version is different than docker engine version & Improve output of verification job
Issue-ID: OOM-2415
Signed-off-by: Mateusz Pilat <m.pilat@partner.samsung.com>
Change-Id: Iebf8946c4a8b3eb3abd45402d6d573e403ac9ef2
Diffstat (limited to 'ansible/test/bin')
-rwxr-xr-x | ansible/test/bin/ci-molecule.sh | 2 | ||||
-rwxr-xr-x | ansible/test/bin/install-molecule.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ansible/test/bin/ci-molecule.sh b/ansible/test/bin/ci-molecule.sh index 74296815..98e69c79 100755 --- a/ansible/test/bin/ci-molecule.sh +++ b/ansible/test/bin/ci-molecule.sh @@ -33,7 +33,7 @@ ROLE_PATH=$1 MOLECULE_CONTAINER=${MOLECULE_CONTAINER:-false} echo "Build all pre-build images" -${LOCAL_PATH}/../images/docker/build-all.sh +${LOCAL_PATH}/../images/docker/build-all.sh > image_build.log # Use Molecule container if [ "${MOLECULE_CONTAINER}" == "true" ]; then diff --git a/ansible/test/bin/install-molecule.sh b/ansible/test/bin/install-molecule.sh index 72b07937..7857e0c8 100755 --- a/ansible/test/bin/install-molecule.sh +++ b/ansible/test/bin/install-molecule.sh @@ -41,5 +41,5 @@ source ${VENV_PATH}/bin/activate # Install Molecule if [ ! -z ${VIRTUAL_ENV} ]; then echo "Activated virtual env in ${VIRTUAL_ENV}" - pip install molecule==2.20 ansible==2.7.8 docker pyopenssl + pip -q install molecule==2.20 ansible==2.7.8 docker pyopenssl fi |