Align build scripts to LF
[ta/build-tools.git] / build_step_golden_image.sh
1 #!/bin/bash
2 # Copyright 2019 Nokia
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #     http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15
16 set -x
17 set -e
18
19 scriptdir="$(dirname $(readlink -f ${BASH_SOURCE[0]}))"
20 source $scriptdir/lib.sh
21
22 output_image_path=${1:-$WORKTMP/goldenimage/$GOLDEN_IMAGE_NAME}
23
24 docker_dib_image=dib
25 _load_docker_image $docker_dib_image
26
27 docker run \
28   --rm \
29   --privileged \
30   -v /dev:/dev \
31   -v $WORK:/work \
32   -e WORK=/work \
33   -v $MANIFEST_PATH:/manifest \
34   -e MANIFEST_PATH=/manifest \
35   -v $scriptdir:/tools \
36   $docker_dib_image \
37   /tools/create_golden_image.sh
38
39 mkdir -p $(dirname $output_image_path)
40 mv -f ${TMP_GOLDEN_IMAGE}.qcow2 $output_image_path
41
42 input_dir=$WORKTMP/rpmdata
43 mkdir $input_dir
44 cp -r \
45   $BUILD_CONFIG_INI $RPMLISTS/rpm_info_installed $RPMLISTS/yum_info_installed $RPMLISTS/crypto_rpms.json $RPMLISTS/boms \
46   $input_dir
47
48 $LIBDIR/create_rpmdata_in_docker.sh \
49   $input_dir \
50   $RPMLISTS \
51   -v
52