diff options
author | Andrew Grimberg <agrimberg@linuxfoundation.org> | 2017-02-21 19:42:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@openecomp.org> | 2017-02-21 19:42:35 +0000 |
commit | 8f96dc09b6beff6d2a51e4c7fefec998460de363 (patch) | |
tree | bc6c4afb8316ee58ade6018e3c455620a513c053 /jjb | |
parent | 2c96d948dfd51964c46d84361b1a66a4d0fd4a46 (diff) | |
parent | 6e1ee1e63d77ff8216c7c5afbf28b563be6ff243 (diff) |
Merge "must be executable"
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/policy/include-raw-docker-verify.sh | 12 | ||||
-rw-r--r-- | jjb/policy/include-raw-docker.sh | 2 |
2 files changed, 7 insertions, 7 deletions
diff --git a/jjb/policy/include-raw-docker-verify.sh b/jjb/policy/include-raw-docker-verify.sh index d1943ba7c..c89b26778 100644 --- a/jjb/policy/include-raw-docker-verify.sh +++ b/jjb/policy/include-raw-docker-verify.sh @@ -1,12 +1,10 @@ #!/bin/bash # -echo '============== STARTING SCRIPT TO BUILD DOCKER IMAGES =================' +echo '============== CALLING SCRIPT TO VERIFY DOCKER IMAGES =================' +CURRENTDIR="$(pwd)" +echo $CURRENTDIR -DOCKER_REPOSITORY=nexus3.openecomp.org:10003 +chmod 755 *.* -for image in policy-os policy-nexus policy-db policy-base policy-drools policy-pe ; do - echo "Building $image" - mkdir -p target/$image - cp $image/* target/$image -done +./docker_verify.sh
\ No newline at end of file diff --git a/jjb/policy/include-raw-docker.sh b/jjb/policy/include-raw-docker.sh index ace9f979e..00aa7f74c 100644 --- a/jjb/policy/include-raw-docker.sh +++ b/jjb/policy/include-raw-docker.sh @@ -5,4 +5,6 @@ echo '============== CALLING SCRIPT TO BUILD DOCKER IMAGES =================' CURRENTDIR="$(pwd)" echo $CURRENTDIR +chmod 755 *.* + ./docker_build.sh
\ No newline at end of file |