blob: 5121abfa491dc4584c5472840b2d3e7edd09ba10 [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
Lott, Christopher (cl778h)28b61382019-06-12 14:54:12 -040022# extracts artifacts created by the builder
Lott, Christopher (cl778h)db2347d2019-06-12 09:53:40 -040023
Lott, Christopher (cl778h)28b61382019-06-12 14:54:12 -040024# file with paths of generated deb, rpm packages
25pkgs="/tmp/build_output.yml"
Lott, Christopher (cl778h)db2347d2019-06-12 09:53:40 -040026
Lott, Christopher (cl778h)28b61382019-06-12 14:54:12 -040027# access builder files by creating a container with a trivial command
Lott, Christopher (cl778h)c1f5d872019-06-12 13:17:21 -040028# environment variables are injected in previous Jenkins steps
Lott, Christopher (cl778h)28b61382019-06-12 14:54:12 -040029container=$(docker run -d "$CONTAINER_PUSH_REGISTRY"/"$DOCKER_NAME":"$DOCKER_IMAGE_TAG" ls)
30docker cp "$container":"$pkgs" .
31pkgs_base=$(basename "$pkgs")
32
33deb=$(yq -r .deb "$pkgs_base")
34docker cp "$container":"$deb" .
35deb_base=$(basename "$deb")
36echo "Push file $deb_base" # TODO
37
38rpm=$(yq -r .rpm "$pkgs_base")
39docker cp "$container":"$rpm" .
40rpm_base=$(basename "$rpm")
41echo "Push file $rpm_base" # TODO