Add initial code
[ta/build-tools.git] / build_step_golden_image.sh
diff --git a/build_step_golden_image.sh b/build_step_golden_image.sh
new file mode 100755 (executable)
index 0000000..2dc1a37
--- /dev/null
@@ -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
+