X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=build_step_golden_image.sh;fp=build_step_golden_image.sh;h=2dc1a37a1b32e7a7fecf3c3d0a1f0083f9ce3886;hb=4ded4f2a805e9447be90751d7d4fb7e11552e545;hp=0000000000000000000000000000000000000000;hpb=3b1226294aa9e47692e15279e669d159675deeb9;p=ta%2Fbuild-tools.git diff --git a/build_step_golden_image.sh b/build_step_golden_image.sh new file mode 100755 index 0000000..2dc1a37 --- /dev/null +++ b/build_step_golden_image.sh @@ -0,0 +1,50 @@ +#!/bin/bash +# Copyright 2019 Nokia +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +set -x +set -e + +scriptdir="$(dirname $(readlink -f ${BASH_SOURCE[0]}))" +source $scriptdir/lib.sh + +output_image_path="$1" +[[ $output_image_path =~ ^/ ]] || output_image_path=$(pwd)/$output_image_path +rpm_info_output_dir=$2 +[[ $rpm_info_output_dir =~ ^/ ]] || rpm_info_output_dir=$(pwd)/$rpm_info_output_dir + +docker_dib_image=dib:2.0 +_load_docker_image $docker_dib_image + +docker run \ + --rm \ + --privileged \ + -v /dev:/dev \ + -v $WORK:/work \ + $docker_dib_image \ + $(realpath --relative-to $WORK $scriptdir)/create_golden_image.sh + +_publish_image ${TMP_GOLDEN_IMAGE}.qcow2 $output_image_path/${GOLDEN_IMAGE_NAME} + +input_dir=$WORKTMP/rpmdata +mkdir $input_dir +cp -r \ + $BUILD_CONFIG_INI $RPMLISTS/rpm_info_installed $RPMLISTS/yum_info_installed $RPMLISTS/crypto_rpms.json $RPMLISTS/boms \ + $input_dir + +$LIBDIR/create_rpmdata_in_docker.sh \ + $input_dir \ + $RPMLISTS \ + -v +