e85229d833c64f791e12f1f03b241e891740fc51
[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-1ba0db8"
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_APTLY_DIR=${WORKSPACE}/aptly
136 STX_MINIKUBE_HOME=${WORKSPACE}/minikube_home
137 STX_MANIFEST_URL="https://opendev.org/starlingx/manifest"
138
139 #MIRROR_SRC_STX=infbuilder/inf-src-stx:${STX_VER}
140 MIRROR_SRC_STX=infbuilder/inf-src-stx:${STX_TAG}
141 MIRROR_CONTAINER_IMG=infbuilder/inf-debian-mirror:2022.11-stx-${STX_VER}
142 MIRROR_APTLY_IMG=infbuilder/inf-debian-aptly:2022.11-stx-${STX_VER}
143
144 SRC_META_PATCHES=${SCRIPTS_DIR}/meta-patches
145
146 ISO_INF_DEB=inf-image-debian-all-x86-64.iso
147
148 prepare_workspace () {
149     msg_step="Create workspace for the Debian build"
150     echo_step_start
151
152     mkdir -p ${STX_LOCAL_SRC_DIR} ${STX_LOCAL_PRJ_DIR} ${STX_MIRROR_DIR} \
153         ${STX_APTLY_DIR} ${STX_PRJ_OUTPUT} ${STX_MINIKUBE_HOME}
154     rm -f ${STX_SRC_DIR} ${STX_PRJ_DIR}
155     ln -sf $(realpath --relative-to=${WORKSPACE} ${STX_LOCAL_SRC_DIR}) ${STX_SRC_DIR}
156     ln -sf $(realpath --relative-to=${WORKSPACE} ${STX_LOCAL_PRJ_DIR}) ${STX_PRJ_DIR}
157
158     echo_info "The following directories are created in your workspace(${WORKSPACE}):"
159     echo_info "For all source repos: ${STX_SRC_DIR}"
160     echo_info "For StarlingX deb pkgs mirror: ${STX_MIRROR_DIR}"
161     echo_info "For StarlingX build project: ${STX_PRJ_DIR}"
162
163     echo_step_end
164 }
165
166 create_env () {
167     msg_step="Create env file for the Debian build"
168     echo_step_start
169
170     ENV_FILENAME=env.${PRJ_NAME}
171
172     cat <<EOF > ${WORKSPACE}/${ENV_FILENAME}
173
174 export STX_BUILD_HOME=${WORKSPACE}
175 export PROJECT=${PRJ_NAME}
176 export STX_MIRROR_DIR=${STX_MIRROR_DIR}
177 export STX_REPO_ROOT=${STX_SRC_DIR}
178 #export STX_REPO_ROOT_SUBDIR="localdisk/designer/${USER}/${PRJ_NAME}"
179
180 export USER_NAME=${USER}
181 export USER_EMAIL=${USER}@windriver.com
182
183 # MINIKUBE
184 export STX_PLATFORM="minikube"
185 export STX_MINIKUBENAME="minikube-${USER}"
186 export MINIKUBE_HOME=${STX_MINIKUBE_HOME}
187
188 # Manifest/Repo Options:
189 export STX_MANIFEST_URL="${STX_MANIFEST_URL}"
190 export STX_MANIFEST_BRANCH="master"
191 export STX_MANIFEST="default.xml"
192
193 EOF
194
195     echo_info "Env file created at ${WORKSPACE}/$ENV_FILENAME"
196     cat ${WORKSPACE}/$ENV_FILENAME
197
198     source ${WORKSPACE}/${ENV_FILENAME}
199
200     git config --global user.email "${USER_EMAIL}"
201     git config --global user.name "${USER_NAME}"
202     git config --global color.ui false
203
204     echo_step_end
205 }
206
207 repo_init_sync () {
208     msg_step="Init the repo and sync"
209     echo_step_start
210
211     # Avoid the colorization prompt
212     git config --global color.ui false
213
214     if [ -d ${STX_REPO_ROOT}/.repo ]; then
215         echo_info "the src repos already exists, skipping"
216     else
217         cd ${STX_REPO_ROOT}
218
219         RUN_CMD="repo init -u ${STX_MANIFEST_URL} -b ${STX_SRC_BRANCH} -m ${STX_MANIFEST}"
220         run_cmd "Init the repo from manifest"
221
222         RUN_CMD="repo sync --force-sync"
223         run_cmd "repo sync"
224
225         touch .repo-init-done
226     fi
227
228     echo_step_end
229 }
230
231 get_mirror_src () {
232     msg_step="Get src mirror from dockerhub image"
233     echo_step_start
234
235     if [ -d ${STX_REPO_ROOT}/.repo ]; then
236         echo_info "the src repos already exists, skipping"
237     else
238         docker pull ${MIRROR_SRC_STX}
239         docker create -ti --name inf-src-stx ${MIRROR_SRC_STX} sh
240         #docker cp inf-src-stx:/stx-${STX_VER}.tar.bz2 ${STX_REPO_ROOT}
241         docker cp inf-src-stx:/stx-${STX_TAG}.tar.bz2 ${STX_REPO_ROOT}
242         docker rm inf-src-stx
243
244         cd ${STX_REPO_ROOT}
245         #tar xf stx-${STX_VER}.tar.bz2
246         #mv stx-${STX_VER}/* stx-${STX_VER}/.repo .
247         #rm -rf stx-${STX_VER} stx-${STX_VER}.tar.bz2
248         tar xf stx-${STX_TAG}.tar.bz2
249         mv stx-${STX_SRC_BRANCH}/* stx-${STX_SRC_BRANCH}/.repo .
250         rm -rf stx-${STX_SRC_BRANCH} stx-${STX_TAG}.tar.bz2
251         touch .repo-init-done
252
253     fi
254
255     echo_step_end
256 }
257
258 get_mirror_pkg () {
259     msg_step="Get deb mirror from dockerhub image"
260     echo_step_start
261
262     if [ -d ${STX_MIRROR_DIR}/starlingx ]; then
263         echo_info "The deb mirror already exists, skipping"
264     else
265         docker pull ${MIRROR_CONTAINER_IMG}
266         docker create -ti --name inf-debian-mirror ${MIRROR_CONTAINER_IMG} sh
267         docker cp inf-debian-mirror:/mirror-stx-${STX_VER}/. ${STX_MIRROR_DIR}
268         docker rm inf-debian-mirror
269     fi
270
271     echo_step_end
272 }
273
274 get_mirror_aptly () {
275     msg_step="Get deb mirror aptly from dockerhub image"
276     echo_step_start
277
278     if [ -f ${STX_APTLY_DIR}/aptly.conf ]; then
279         echo_info "The deb aptly already exists, skipping"
280     else
281         docker pull ${MIRROR_APTLY_IMG}
282         docker create -ti --name inf-debian-aptly ${MIRROR_APTLY_IMG} sh
283         docker cp inf-debian-aptly:/aptly-stx-${STX_VER}/. ${STX_APTLY_DIR}
284         docker rm inf-debian-aptly
285     fi
286
287     echo_step_end
288 }
289
290 patch_src () {
291     echo_step_start "Some source codes need to be patched for INF project"
292
293     STX_ISSUE_DIR="${STX_REPO_ROOT}/cgcs-root/stx/config-files/debian-release-config/files"
294     grep -q "${ORAN_REL}" ${STX_ISSUE_DIR}/issue* \
295         || sed -i "s/\(@PLATFORM_RELEASE@\)/\1 - ${ORAN_REL}/" ${STX_ISSUE_DIR}/issue*
296
297     grep -q "\-\-parallel" ${STX_REPO_ROOT}/stx-tools/stx/lib/stx/stx_build.py \
298         || sed -i 's/\(build-pkgs -a \)/\1 --parallel 2/' \
299         ${STX_REPO_ROOT}/stx-tools/stx/lib/stx/stx_build.py
300
301     # Apply meta patches
302
303     if [ -d ${SRC_META_PATCHES} ]; then
304         cd ${SRC_META_PATCHES}
305         src_dirs=$(find . -type f -printf "%h\n"|uniq)
306         for d in ${src_dirs}; do
307             cd ${STX_REPO_ROOT}/${d}
308
309             # backup current branch
310             local_branch=$(git rev-parse --abbrev-ref HEAD)
311             if [ "${local_branch}" = "HEAD" ]; then
312                 git checkout ${STX_SRC_BRANCH}
313                 local_branch=$(git rev-parse --abbrev-ref HEAD)
314             fi
315             git branch -m "${local_branch}_${TIMESTAMP}"
316             git checkout ${STX_SRC_BRANCH}
317
318             for p in $(ls -1 ${SRC_META_PATCHES}/${d}); do
319                 echo_info "Apllying patch: ${SRC_META_PATCHES}/${d}/${p}"
320                 git am ${SRC_META_PATCHES}/${d}/${p}
321             done
322         done
323     fi
324
325     echo_step_end
326 }
327
328 init_stx_tool () {
329     echo_step_start "Init stx tool"
330
331     cd ${STX_REPO_ROOT}
332     cd stx-tools
333     cp stx.conf.sample stx.conf
334     source import-stx
335
336     # Update stx config
337     # Align the builder container to use your user/UID
338     stx config --add builder.myuname $(id -un)
339     stx config --add builder.uid $(id -u)
340
341     # Embedded in ~/localrc of the build container
342     stx config --add project.gituser ${USER_NAME}
343     stx config --add project.gitemail ${USER_EMAIL}
344
345     # This will be included in the name of your build container and the basename for $STX_REPO_ROOT
346     stx config --add project.name ${PRJ_NAME}
347
348     #stx config --add project.proxy true
349     #stx config --add project.proxyserver 147.11.252.42
350     #stx config --add project.proxyport 9090
351
352     stx config --show
353
354     echo_step_end
355 }
356
357 build_image () {
358     echo_step_start "Build Debian images"
359
360     cd ${STX_REPO_ROOT}/stx-tools
361     RUN_CMD="./stx-init-env"
362     run_cmd "Run stx-init-env script"
363
364     stx control status
365
366     # wait for all the pods running
367     sleep 600
368     stx control status
369
370     RUN_CMD="stx build prepare"
371     run_cmd "Build prepare"
372
373     RUN_CMD="stx build download"
374     run_cmd "Download packges"
375
376     RUN_CMD="stx repomgr list"
377     run_cmd "repomgr list"
378
379     #RUN_CMD="stx shell -c 'build-pkgs -a --parallel 10'"
380     RUN_CMD="stx build world"
381     run_cmd "Build-pkgs"
382
383     #RUN_CMD="stx shell -c 'build-image'"
384     RUN_CMD="stx build image"
385     run_cmd "Build ISO image"
386
387     cp -f ${STX_LOCAL_DIR}/deploy/starlingx-intel-x86-64-cd.iso ${STX_PRJ_OUTPUT}/${ISO_INF_DEB}
388
389     echo_step_end
390
391     echo_info "Build succeeded, you can get the image in ${STX_PRJ_OUTPUT}/${ISO_INF_DEB}"
392 }
393
394 #########################################################################
395 # Main process
396 #########################################################################
397
398 prepare_workspace
399 create_env
400 if [ "${USE_MIRROR}" == "Yes" ]; then
401     get_mirror_src
402     get_mirror_pkg
403     get_mirror_aptly
404 else
405     repo_init_sync
406 fi
407 patch_src
408 init_stx_tool
409 build_image