blob: 1fa1e04c8c7fe0bcede6b078c1c95b6a08732ed1 [file] [log] [blame]
Lott, Christopher (cl778h)db2347d2019-06-12 09:53:40 -04001#!/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
19set -eux -o pipefail
20echo "--> 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)
26file="/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
30container=$(docker run -d "$DOCKER_NAME":"$DOCKER_IMAGE_TAG" ls "$file")
31docker logs "$container"
32docker cp "$container:$file" .
33filebase=$(basename "$file")
34deb=$(cat "$filebase")
35docker cp "$container:$deb" .