Magellan Linux

Contents of /trunk/mage-buildserver/buildserver-prepare.sh

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2816 - (show annotations) (download) (as text)
Mon Sep 8 14:59:12 2014 UTC (9 years, 8 months ago) by niro
File MIME type: application/x-sh
File size: 4319 byte(s)
-bind logs to buildroot
1 #!/bin/bash
2
3 # get configuration
4 BUILDSERVER_CONFIG_DIR="/etc/mage-buildserver"
5 BUILDSERVER_CACHE_DIR="/var/cache/mage-buildserver"
6 source ${BUILDSERVER_CONFIG_DIR}/buildserver.conf
7
8 source ${BUILDSERVER_LIB_DIR}/buildserver-functions.sh
9
10 ALL_ARCH_PACKAGES=( subversion openssh )
11 NON_SRC_ARCH_PACKAGES=( "${BOOTSTRAP_DEVUTILS}" ccache python scanelf )
12
13 # fallback
14 if [[ -z ${MAGE_PROFILE} ]]
15 then
16 echo "Warning: using '${BUILDROOT_PROFILE}' as MAGE_PROFILE. You should define MAGE_PROFILE in the profile.conf."
17 MAGE_PROFILE="${BUILDROOT_PROFILE}"
18 fi
19
20 if [ ! -f ${BUILDROOT}/.stamps/mage_svn-checkout-ok ]
21 then
22 die "svn checkout of mage required. run buildserver-svn first."
23 fi
24
25 # create buildroot layout
26 install -d ${BUILDROOT}/.stamps
27 install -d ${BUILDROOT}/ssh
28 for arch in $(enum-all-arch-types)
29 do
30 install -d ${BUILDROOT}/${arch}
31 install -d ${BUILDROOT}/mage-tree/${arch}
32 install -d ${BUILDROOT}/packages/${arch}
33 install -d ${BUILDROOT}/meta/${arch}
34 install -d ${BUILDROOT}/build-info/${arch}
35 install -d ${BUILDROOT}/log/smage/${arch}
36 done
37
38 #
39 # arch specific
40 #
41 for arch in $(enum-all-arch-types)
42 do
43 if [ ! -f ${BUILDROOT}/.stamps/${arch}_bootstrap-ok ]
44 then
45 mage-bootstrap \
46 --root ${BUILDROOT}/${arch} \
47 --magerc ${BUILDSERVER_CONFIG_DIR}/profiles/${BUILDROOT_PROFILE}/${arch}/mage.rc \
48 --profile "${MAGE_PROFILE}" \
49 --basesystem "${BOOTSTRAP_BASESYSTEM}" \
50 || die "'${arch}' bootstrap"
51 touch ${BUILDROOT}/.stamps/${arch}_bootstrap-ok
52 else
53 echo "Warning: bootstrap already done for arch '${arch}'"
54 fi
55 done
56
57 # create initial mage-tree for all arches
58 ${BUILDSERVER_LIB_DIR}/buildserver-setup-mage-tree.sh
59
60 for arch in $(enum-all-arch-types)
61 do
62 # honor any proxy settings
63 :> ${BUILDROOT}/${arch}/etc/env.d/01proxy
64 [[ -n ${http_proxy} ]] && echo "http_proxy=\"${http_proxy}\"" >> ${BUILDROOT}/${arch}/etc/env.d/01proxy
65 [[ -n ${https_proxy} ]] && echo "https_proxy=\"${https_proxy}\"" >> ${BUILDROOT}/${arch}/etc/env.d/01proxy
66 [[ -n ${ftp_proxy} ]] && echo "ftp_proxy=\"${ftp_proxy}\"" >> ${BUILDROOT}/${arch}/etc/env.d/01proxy
67 [[ -n ${ftps_proxy} ]] && echo "ftps_proxy=\"${ftps_proxy}\"" >> ${BUILDROOT}/${arch}/etc/env.d/01proxy
68 [[ -n ${no_proxy} ]] && echo "no_proxy=\"${no_proxy}\"" >> ${BUILDROOT}/${arch}/etc/env.d/01proxy
69 runarch ${arch} env-rebuild || die "${arch} environment rebuild for proxy setup"
70
71 # always enable bootstrap mode to supress the startups of any services
72 :> ${BUILDROOT}/${arch}/etc/env.d/00mage-buildserver
73 echo "MAGE_BOOTSTRAP=\"true\"" >> ${BUILDROOT}/${arch}/etc/env.d/00mage-buildserver
74
75 for pkg in ${ALL_ARCH_PACKAGES[*]}
76 do
77 runarch-pkg-install "${arch}" "${pkg}"
78 done
79
80 # exclude these pkg from src chroot
81 if [[ ${arch} != src ]]
82 then
83 for pkg in ${NON_SRC_ARCH_PACKAGES[*]}
84 do
85 runarch-pkg-install "${arch}" "${pkg}"
86 done
87
88 # setup ccache
89 if [ ! -f ${BUILDROOT}/.stamps/${arch}_setup-ccache-ok ]
90 then
91 runarch "${arch}" ccache -M 4G || die "${arch} setup ccache"
92 touch ${BUILDROOT}/.stamps/${arch}_setup-ccache-ok
93 else
94 echo "Warning: ccache already configured for arch '${arch}'"
95 fi
96 fi
97
98 # update-ca-certificates
99 runarch "${arch}" update-ca-certificates # no die here, cmd may missing
100
101 # create list of protected packages
102 echo "BUILDSERVER_CACHE_DIR=\"${BUILDSERVER_CACHE_DIR}\"" > ${BUILDROOT}/${arch}/.runrc
103 cat >> ${BUILDROOT}/${arch}/.runrc << "EOF"
104 if [ -f /etc/rc.d/init.d/functions ]
105 then
106 source /etc/rc.d/init.d/functions
107 else
108 die "/etc/rc.d/init.d/functions not found"
109 fi
110 if [ -f /etc/mage.rc.global ]
111 then
112 source /etc/mage.rc.global
113 else
114 die "/etc/mage.rc.global not found"
115 fi
116 if [ -f /etc/mage.rc ]
117 then
118 source /etc/mage.rc
119 else
120 die "/etc/mage.rc not found"
121 fi
122
123 env-rebuild
124 source /etc/profile
125
126 echo "generate protected packages info data"
127 install -d ${BUILDSERVER_CACHE_DIR}/protected
128
129 for mage in $(find ${INSTALLDB} -name \*.${MAGESUFFIX})
130 do
131 pkgname=$(basename ${mage} .${MAGESUFFIX})
132 pkgname="${pkgname%-*-*}"
133 echo "${pkgname}" > ${BUILDSERVER_CACHE_DIR}/protected/"${pkgname}"
134 done
135 EOF
136 runarch-script ${arch} .runrc || die "${arch} protect-gen failed"
137 if [ -f ${BUILDROOT}/${arch}/.runrc ]
138 then
139 rm ${BUILDROOT}/${arch}/.runrc
140 fi
141
142 # cleanup
143 runarch "${arch}" mage clean || die "${arch} mage clean"
144
145 echo "Buildroot for arch '${arch}' sucessfully created."; echo
146 done

Properties

Name Value
svn:executable *