diff options
author | Tomáš Levora <t.levora@partner.samsung.com> | 2020-05-27 10:51:44 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-05-27 10:51:44 +0000 |
commit | 38cf0fdbf2f27a3b046c11bbd01331e4f609819e (patch) | |
tree | 1ccafc347303aab39dcc4171949b7c1adde980c8 /offline-installer-review.sh | |
parent | 2e60d8e643a350cc529ef4e147c93b1b7032c401 (diff) | |
parent | f030b067a4c7da273e5546c6e27b91682e95f6c3 (diff) |
Merge "Fix: Fix docker cli version mismatch"
Diffstat (limited to 'offline-installer-review.sh')
-rwxr-xr-x | offline-installer-review.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/offline-installer-review.sh b/offline-installer-review.sh index f839308a..f60beedd 100755 --- a/offline-installer-review.sh +++ b/offline-installer-review.sh @@ -48,10 +48,11 @@ function run_molecule() { #######################################################################$ # MAIN #$ #######################################################################$ +echo "---------- ONAP OFFLINE INSTALLER - CHANGE VERIFICATION START ----------" FAILED_ROLES=() ALL_PLAYBOOKS=(`ls -d ansible/test/play-*`) # enumerate all playbook tests for later usage # Setup environment -prep_ubuntu_16_04_for_molecule +prep_ubuntu_16_04_for_molecule > ubuntu_preparation.log # Check for changes in Ansible roles ROLE_CHANGES=(`git diff HEAD^ HEAD --name-only ansible/roles | cut -f 1-3 -d "/" | sort -u`) @@ -135,3 +136,4 @@ else echo "Verification failed for ${FAILED_ROLES[*]}" exit 1 fi +echo "---------- ONAP OFFLINE INSTALLER - CHANGE VERIFICATION END ----------" |