build_inf_debian.sh: enable get_mirror_pkg
[pti/rtp.git] / scripts / build_inf_debian / build_inf_debian.sh
1 #!/bin/bash
2 #
3 # Copyright (C) 2022 Wind River Systems, Inc.
4 #
5 #  Licensed under the Apache License, Version 2.0 (the "License");
6 #  you may not use this file except in compliance with the License.
7 #  You may obtain a copy of the License at
8 #
9 #      http://www.apache.org/licenses/LICENSE-2.0
10 #
11 #  Unless required by applicable law or agreed to in writing, software
12 #  distributed under the License is distributed on an "AS IS" BASIS,
13 #  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 #  See the License for the specific language governing permissions and
15 #  limitations under the License.
16
17 # Ensure we fail the job if any steps fail.
18 set -e -o pipefail
19
20 #########################################################################
21 # Variables
22 #########################################################################
23
24 SRC_ORAN_BRANCH="master"
25
26 SRC_ORAN_URL="https://gerrit.o-ran-sc.org/r/pti/rtp"
27
28 STX_VER="8.0"
29 ORAN_REL="ORAN G-Release (${STX_VER})"
30
31 SCRIPTS_DIR=$(dirname $(readlink -f $0))
32 SCRIPTS_NAME=$(basename $0)
33 TIMESTAMP=`date +"%Y%m%d_%H%M%S"`
34
35 #########################################################################
36 # Common Functions
37 #########################################################################
38
39 help_info () {
40 cat << ENDHELP
41 Usage:
42 ${SCRIPTS_NAME} [-w WORKSPACE_DIR] [-m] [-n] [-u] [-h]
43 where:
44     -w WORKSPACE_DIR is the path for the project
45     -m use mirror for src and deb pkgs
46     -n dry-run only for bitbake
47     -h this help info
48 examples:
49 $0
50 $0 -w workspace_1234
51 ENDHELP
52 }
53
54 echo_step_start() {
55     [ -n "$1" ] && msg_step=$1
56     echo "#########################################################################################"
57     echo "## ${SCRIPTS_NAME} - STEP START: ${msg_step}"
58     echo "#########################################################################################"
59 }
60
61 echo_step_end() {
62     [ -n "$1" ] && msg_step=$1
63     echo "#########################################################################################"
64     echo "## ${SCRIPTS_NAME} - STEP END: ${msg_step}"
65     echo "#########################################################################################"
66     echo
67 }
68
69 echo_info () {
70     echo "INFO: $1"
71 }
72
73 echo_error () {
74     echo "ERROR: $1"
75 }
76
77 run_cmd () {
78     echo
79     echo_info "$1"
80     echo "CMD: ${RUN_CMD}"
81     ${RUN_CMD}
82 }
83
84 #########################################################################
85 # Parse cmd options
86 #########################################################################
87
88 DRYRUN=""
89 USE_MIRROR="No"
90
91 while getopts "w:mnh" OPTION; do
92     case ${OPTION} in
93         w)
94             WORKSPACE=`readlink -f ${OPTARG}`
95             ;;
96         n)
97             DRYRUN="-n"
98             ;;
99         m)
100             USE_MIRROR="Yes"
101             ;;
102         h)
103             help_info
104             exit
105             ;;
106     esac
107 done
108
109 if [ -z ${WORKSPACE} ]; then
110     echo_info "No workspace specified, a directory 'workspace' will be created in current directory as the workspace"
111     WORKSPACE=`readlink -f workspace`
112 fi
113
114 #########################################################################
115 # Functions for each step
116 #########################################################################
117
118 # "_" can't be used in project name
119 PRJ_NAME=prj-oran-stx-deb
120
121 # stx 8.0 is not released yet
122 #STX_SRC_BRANCH="r/stx.${STX_VER}"
123
124 # Temporary for master
125 STX_TAG="master-3a9d121"
126 STX_SRC_BRANCH="master"
127
128 STX_LOCAL_DIR=${WORKSPACE}/localdisk
129 STX_LOCAL_SRC_DIR=${STX_LOCAL_DIR}/designer/${USER}/${PRJ_NAME}
130 STX_LOCAL_PRJ_DIR=${STX_LOCAL_DIR}/loadbuild/${USER}/${PRJ_NAME}
131 STX_SRC_DIR=${WORKSPACE}/src
132 STX_PRJ_DIR=${WORKSPACE}/${PRJ_NAME}
133 STX_PRJ_OUTPUT=${WORKSPACE}/prj_output
134 STX_MIRROR_DIR=${WORKSPACE}/mirrors
135 STX_MINIKUBE_HOME=${WORKSPACE}/minikube_home
136 STX_MANIFEST_URL="https://opendev.org/starlingx/manifest"
137
138 #MIRROR_SRC_STX=infbuilder/inf-src-stx:${STX_VER}
139 MIRROR_SRC_STX=infbuilder/inf-src-stx:${STX_TAG}
140 MIRROR_CONTAINER_IMG=infbuilder/inf-debian-mirror:2022.11-stx-${STX_VER}
141
142 SRC_META_PATCHES=${SCRIPTS_DIR}/meta-patches
143
144 ISO_INF_DEB=inf-image-debian-all-x86-64.iso
145
146 prepare_workspace () {
147     msg_step="Create workspace for the Debian build"
148     echo_step_start
149
150     mkdir -p ${STX_LOCAL_SRC_DIR} ${STX_LOCAL_PRJ_DIR} ${STX_MIRROR_DIR} ${STX_PRJ_OUTPUT} ${STX_MINIKUBE_HOME}
151     rm -f ${STX_SRC_DIR} ${STX_PRJ_DIR}
152     ln -sf $(realpath --relative-to=${WORKSPACE} ${STX_LOCAL_SRC_DIR}) ${STX_SRC_DIR}
153     ln -sf $(realpath --relative-to=${WORKSPACE} ${STX_LOCAL_PRJ_DIR}) ${STX_PRJ_DIR}
154
155     echo_info "The following directories are created in your workspace(${WORKSPACE}):"
156     echo_info "For all source repos: ${STX_SRC_DIR}"
157     echo_info "For StarlingX deb pkgs mirror: ${STX_MIRROR_DIR}"
158     echo_info "For StarlingX build project: ${STX_PRJ_DIR}"
159
160     echo_step_end
161 }
162
163 create_env () {
164     msg_step="Create env file for the Debian build"
165     echo_step_start
166
167     ENV_FILENAME=env.${PRJ_NAME}
168
169     cat <<EOF > ${WORKSPACE}/${ENV_FILENAME}
170
171 export STX_BUILD_HOME=${WORKSPACE}
172 export PROJECT=${PRJ_NAME}
173 export STX_MIRROR_DIR=${STX_MIRROR_DIR}
174 export STX_REPO_ROOT=${STX_SRC_DIR}
175 #export STX_REPO_ROOT_SUBDIR="localdisk/designer/${USER}/${PRJ_NAME}"
176
177 export USER_NAME=${USER}
178 export USER_EMAIL=${USER}@windriver.com
179
180 # MINIKUBE
181 export STX_PLATFORM="minikube"
182 export STX_MINIKUBENAME="minikube-${USER}"
183 export MINIKUBE_HOME=${STX_MINIKUBE_HOME}
184
185 # Manifest/Repo Options:
186 export STX_MANIFEST_URL="${STX_MANIFEST_URL}"
187 export STX_MANIFEST_BRANCH="master"
188 export STX_MANIFEST="default.xml"
189
190 EOF
191
192     echo_info "Env file created at ${WORKSPACE}/$ENV_FILENAME"
193     cat ${WORKSPACE}/$ENV_FILENAME
194
195     source ${WORKSPACE}/${ENV_FILENAME}
196
197     git config --global user.email "${USER_EMAIL}"
198     git config --global user.name "${USER_NAME}"
199     git config --global color.ui false
200
201     echo_step_end
202 }
203
204 repo_init_sync () {
205     msg_step="Init the repo and sync"
206     echo_step_start
207
208     # Avoid the colorization prompt
209     git config --global color.ui false
210
211     if [ -d ${STX_REPO_ROOT}/.repo ]; then
212         echo_info "the src repos already exists, skipping"
213     else
214         cd ${STX_REPO_ROOT}
215
216         RUN_CMD="repo init -u ${STX_MANIFEST_URL} -b ${STX_SRC_BRANCH} -m ${STX_MANIFEST}"
217         run_cmd "Init the repo from manifest"
218
219         RUN_CMD="repo sync --force-sync"
220         run_cmd "repo sync"
221     fi
222
223     echo_step_end
224 }
225
226 get_mirror_src () {
227     msg_step="Get src mirror from dockerhub image"
228     echo_step_start
229
230     if [ -d ${STX_REPO_ROOT}/.repo ]; then
231         echo_info "the src repos already exists, skipping"
232     else
233         docker pull ${MIRROR_SRC_STX}
234         docker create -ti --name inf-src-stx ${MIRROR_SRC_STX} sh
235         #docker cp inf-src-stx:/stx-${STX_VER}.tar.bz2 ${STX_REPO_ROOT}
236         docker cp inf-src-stx:/stx-${STX_TAG}.tar.bz2 ${STX_REPO_ROOT}
237         docker rm inf-src-stx
238
239         cd ${STX_REPO_ROOT}
240         #tar xf stx-${STX_VER}.tar.bz2
241         #mv stx-${STX_VER}/* stx-${STX_VER}/.repo .
242         #rm -rf stx-${STX_VER} stx-${STX_VER}.tar.bz2
243         tar xf stx-${STX_TAG}.tar.bz2
244         mv stx-${STX_SRC_BRANCH}/* stx-${STX_SRC_BRANCH}/.repo .
245         rm -rf stx-${STX_SRC_BRANCH} stx-${STX_TAG}.tar.bz2
246         touch .repo-init-done
247
248     fi
249
250     echo_step_end
251 }
252
253 get_mirror_pkg () {
254     msg_step="Get deb mirror from dockerhub image"
255     echo_step_start
256
257     if [ -d ${MIRROR_CONTAINER_IMG}/starlingx ]; then
258         echo_info "The deb mirror already exists, skipping"
259     else
260         docker pull ${MIRROR_CONTAINER_IMG}
261         docker create -ti --name inf-debian-mirror ${MIRROR_CONTAINER_IMG} sh
262         docker cp inf-debian-mirror:/mirror-stx-${STX_VER}/. ${STX_MIRROR_DIR}
263         docker rm inf-debian-mirror
264     fi
265
266     echo_step_end
267 }
268
269 patch_src () {
270     echo_step_start "Some source codes need to be patched for INF project"
271
272     STX_ISSUE_DIR="${STX_REPO_ROOT}/cgcs-root/stx/config-files/debian-release-config/files"
273     grep -q "${ORAN_REL}" ${STX_ISSUE_DIR}/issue* \
274         || sed -i "s/\(@PLATFORM_RELEASE@\)/\1 - ${ORAN_REL}/" ${STX_ISSUE_DIR}/issue*
275
276     # Apply meta patches
277
278     if [ -d ${SRC_META_PATCHES} ]; then
279         cd ${SRC_META_PATCHES}
280         src_dirs=$(find . -type f -printf "%h\n"|uniq)
281         for d in ${src_dirs}; do
282             cd ${STX_REPO_ROOT}/${d}
283
284             # backup current branch
285             local_branch=$(git rev-parse --abbrev-ref HEAD)
286             if [ "${local_branch}" = "HEAD" ]; then
287                 git checkout ${STX_SRC_BRANCH}
288                 local_branch=$(git rev-parse --abbrev-ref HEAD)
289             fi
290             git branch -m "${local_branch}_${TIMESTAMP}"
291             git checkout ${STX_SRC_BRANCH}
292
293             for p in $(ls -1 ${SRC_META_PATCHES}/${d}); do
294                 echo_info "Apllying patch: ${SRC_META_PATCHES}/${d}/${p}"
295                 git am ${SRC_META_PATCHES}/${d}/${p}
296             done
297         done
298     fi
299
300     echo_step_end
301 }
302
303 init_stx_tool () {
304     echo_step_start "Init stx tool"
305
306     cd ${STX_REPO_ROOT}
307     cd stx-tools
308     cp stx.conf.sample stx.conf
309     source import-stx
310
311     # Update stx config
312     # Align the builder container to use your user/UID
313     stx config --add builder.myuname $(id -un)
314     stx config --add builder.uid $(id -u)
315
316     # Embedded in ~/localrc of the build container
317     stx config --add project.gituser ${USER_NAME}
318     stx config --add project.gitemail ${USER_EMAIL}
319
320     # This will be included in the name of your build container and the basename for $STX_REPO_ROOT
321     stx config --add project.name ${PRJ_NAME}
322
323     #stx config --add project.proxy true
324     #stx config --add project.proxyserver 147.11.252.42
325     #stx config --add project.proxyport 9090
326
327     stx config --show
328
329     echo_step_end
330 }
331
332 build_image () {
333     echo_step_start "Build Debian images"
334
335     cd ${STX_REPO_ROOT}/stx-tools
336     RUN_CMD="./stx-init-env"
337     run_cmd "Run stx-init-env script"
338
339     stx control status
340
341     # wait for all the pods running
342     sleep 600
343     stx control status
344
345     RUN_CMD="stx build prepare"
346     run_cmd "Build prepare"
347
348     RUN_CMD="stx build download"
349     run_cmd "Download packges"
350
351     RUN_CMD="stx repomgr list"
352     run_cmd "repomgr list"
353
354     RUN_CMD="stx shell -c 'build-pkgs -a --parallel 10'"
355     run_cmd "Build-pkgs"
356
357     RUN_CMD="stx shell -c 'build-image'"
358     run_cmd "Build ISO image"
359
360     cp -f ${STX_LOCAL_DIR}/deploy/starlingx-intel-x86-64-cd.iso ${STX_PRJ_OUTPUT}/${ISO_INF_DEB}
361
362     echo_step_end
363
364     echo_info "Build succeeded, you can get the image in ${STX_PRJ_OUTPUT}/${ISO_INF_DEB}"
365 }
366
367 #########################################################################
368 # Main process
369 #########################################################################
370
371 prepare_workspace
372 create_env
373 if [ "${USE_MIRROR}" == "Yes" ]; then
374     get_mirror_src
375     get_mirror_pkg
376 else
377     repo_init_sync
378 fi
379 patch_src
380 init_stx_tool
381 build_image