fix(ci): Remove duplicate info from dev pkg
[ric-plt/lib/rmr.git] / ci / ci_build.ksh
1 #!/usr/bin/env ksh
2 # :vim ts=4 sw=4 noet:
3 #==================================================================================
4 #    Copyright (c) 2019 Nokia
5 #    Copyright (c) 2018-2019 AT&T Intellectual Property.
6 #
7 #   Licensed under the Apache License, Version 2.0 (the "License");
8 #   you may not use this file except in compliance with the License.
9 #   You may obtain a copy of the License at
10 #
11 #       http://www.apache.org/licenses/LICENSE-2.0
12 #
13 #   Unless required by applicable law or agreed to in writing, software
14 #   distributed under the License is distributed on an "AS IS" BASIS,
15 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 #   See the License for the specific language governing permissions and
17 #   limitations under the License.
18 #==================================================================================
19 #
20
21 #       Mnemonic:       ci_build.ksh
22 #       Abstract:       Script builds RMr, exececutes the unit and application based
23 #                               tests, then generates packages. The packages are left in /tmp
24 #                               unless -t target-dir is given on the command line. A YAML file
25 #                               is created which can be used to find all of the packages which
26 #                               were deposited in the target directory. In an environment which
27 #                               is also capable of generating RPM ppackages, there should be
28 #                               four packages: a run-time and development package for both
29 #                               debian (.deb) and rh (rpm) based systems.
30 #
31 #                               The intent of this script is for it to be executed as a part
32 #                               of a docker image build process such that the resulting image
33 #                               contains the RMr packages, and a YAML file which provides the
34 #                               paths to the package(s) in the image.  Docker tools can then
35 #                               be used to extract the packages and push them to some external
36 #                               repository.
37 #
38 #                               Assumptions:
39 #                                       We assume that this scirpt is executed at the 'root' of the
40 #                               RMr repo (i.e. the directory which has a subdirectory ci).
41 #
42 #       Date:           14 June 2019
43 # --------------------------------------------------------------------------------
44
45 # stash a set of packages for a particular flavour ($1)
46 #
47 function stash_pkgs {
48         for pkg in deb rpm
49         do
50                 ls .build/*.$pkg 2>/dev/null | while read f
51                 do
52                         cp $f $target_dir/${f##*/}
53                         echo "  - $target_dir/${f##*/}" >>$yaml_file
54                 done
55
56         done
57 }
58
59 # ---------------------------------------------------------------------------
60
61 target_dir="/tmp"
62 verbose=0
63
64 while [[ $1 == -* ]]
65 do
66         case $1 in
67                 -t)     target_dir=$2; shift;;
68                 -v)     verbose=1;;
69
70                 *)      echo "$1 is not recognised"
71                         echo ""
72                         echo "usage: $0 [-t target-dir]"
73                         exit 1
74                         ;;
75         esac
76
77         shift
78 done
79
80 if [[ ! -d $target_dir ]]
81 then
82         echo "[FAIL] cannot find directory: $target_dir"
83         exit 1
84 fi
85
86 if [[ ! -d ./ci ]]                                                      # verify we are in the root of the RMr repo filesystem, abort if not
87 then
88         echo "[FAIL] current working directory does not seem right; should be RMr repo root: $PWD"
89         exit 1
90 fi
91
92 set -e                                                                          # fail unconditionally on first issue
93 yaml_file=$target_dir/build_packages.yml
94 rm -f $yaml_file
95
96 mkdir -p .build
97 (
98         cd .build
99         rm -f *.deb *.rpm                                               # these shouldn't be there, but take no chances
100         cmake .. -DBUILD_DOC=1 -DDEV_PKG=1              # set up dev config for unit test (requires dev stuff)
101         make package
102 )
103 (
104         cd test                                 # execute tests
105         ksh unit_test.ksh                               # unit tests first
106         cd app_test
107         ksh run_all.ksh                                 # application based tests if units pass
108 )
109
110 printf "---\nfiles:\n" >$yaml_file      # initialise the yaml file
111
112 stash_pkgs development      # testing good, stash dev packages built above
113
114 (
115         cd .build                               # now build the run-time packages
116         rm -f *.deb *.rpm               # reconfig should delete these, but take no chances
117         cmake ..                # configure run-time build
118         make package
119 )
120 stash_pkgs runtime                      # move packages to target and record in yaml file
121
122 echo "..." >>$yaml_file         # terminate yaml file
123
124 set +e
125 if (( verbose ))
126 then
127         echo "generated yaml file:"
128         cat $yaml_file
129         echo ""
130         echo "------"
131         ls -al $target_dir/*.deb $target_dir/*.rpm
132 fi
133
134 exit 0