Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log


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

Properties

Name Value
svn:executable *