Lott, Christopher (cl778h) | db2347d | 2019-06-12 09:53:40 -0400 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | #================================================================================== |
| 3 | # Copyright (c) 2019 Nokia |
| 4 | # Copyright (c) 2018-2019 AT&T Intellectual Property. |
| 5 | # |
| 6 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | # you may not use this file except in compliance with the License. |
| 8 | # You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, software |
| 13 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | # See the License for the specific language governing permissions and |
| 16 | # limitations under the License. |
| 17 | #================================================================================== |
| 18 | |
| 19 | set -eux -o pipefail |
| 20 | echo "--> copy-rmr-packages.sh" |
| 21 | |
| 22 | # extracts to host the artifacts created by the builder |
| 23 | |
| 24 | # This file is created by RMr library build process |
| 25 | # with path(s) to the generated artifact(s) |
| 26 | file="/tmp/rmr_deb_path" |
| 27 | |
| 28 | # Create a container from the build image by running a trivial command. |
| 29 | # DOCKER_NAME and DOCKER_IMAGE_TAG are injected by previous steps |
| 30 | container=$(docker run -d "$DOCKER_NAME":"$DOCKER_IMAGE_TAG" ls "$file") |
| 31 | docker logs "$container" |
| 32 | docker cp "$container:$file" . |
| 33 | filebase=$(basename "$file") |
| 34 | deb=$(cat "$filebase") |
| 35 | docker cp "$container:$deb" . |