...
Code Block |
---|
#!/bin/bash # by Denis Kozadaev umask 022 #export CCACHE_DIR="${BUILD_RESULT}/.ccache" #export CCACHE_SIZE="2G" export CCACHE_DISABLE="true" set -x test -f /usr/bin/ild || sudo -E /usr/bin/cp /usr/bin/ld /usr/bin/ild echo '=====' env echo '=====' test -L /etc/dpkg/origins/default || sudo ln -fs dilos /etc/dpkg/origins/dilos test -f /usr/bin/gmake || sudo ln -fs make /usr/bin/gmake #test -f /usr/bin/ar || ln -s gar /usr/bin/ar #test -f /usr/bin/nm || ln -s gnm /usr/bin/nm echo "${COMPONENT}" #export WS_TOP=${WORKSPACE} cd /export/home/admin/ && git clone https://bitbucket.org/dilos/du2.git test -d ${WORKSPACE}/components/${COMPONENT} || exit 1 export DEB_BUILD_OPTIONS="parallel= 2" sudo -E apt-get update #sudo apt-get install -y libssl1.0.2/du-unstable openssl/du-unstable tar/du-unstable --allow-downgrades #sudo apt-get install -y libssl1.0.2/du-unstable openssl/du-unstable tar/du-unstable --allow-downgrades #sudo apt-get install -y libbz2-1./du2-unstable --allow-downgrades sudo apt-get install -y acl iputils-ping kbd ksh scheduler system-data-console-fonts traceroute gmake build-essential #sudo apt-get install -y acl iputils-ping kbd ksh scheduler system-data-console-fonts traceroute gmake build-essential #sudo apt-get install -y libicu-dev/du-unstable libicu57/du-unstable icu-devtools/du-unstable --allow-downgrades DEBIAN_FRONTEND=noninteractive sudo -E apt-get install -f -y DEBIAN_FRONTEND=noninteractive sudo -E apt-get upgrade -y if ! getent group shadow | grep -q '^shadow:[^:]*:42' then sudo -E groupadd -g 42 shadow fi test -L /usr/lib/jvm/default-java || sudo -E /usr/bin/ln -fs oracle-default-jdk /usr/lib/jvm/default-java sudo -E apt-get install -y libx11-6 libxi6 libxtst6 sudo -E /usr/bin/ln -fs libX11.so.6 /usr/lib/64/libX11.so.4 sudo -E /usr/bin/ln -fs libXi.so.6 /usr/lib/64/libXi.so.5 sudo -E /usr/bin/ln -fs libXtst.so.6 /usr/lib/64/libXtst.so.1 cd ${WORKSPACE}/components #yes Y |sudo -E gmake setup cd "${WORKSPACE}/components/${COMPONENT}" #sudo -E gmake debclobber #if (( $? > 0 )); then #exit 1 #fi #export LD_DEBUG=files,libs sudo -E mkdir -p /data/repo/${COMPONENT} BUILD_RESULT=/data/repo/${COMPONENT} export COMPONENT_RESULT=`echo ${BLD_COMPONENT} | sed -e 's;/;-;'` sudo -E /usr/bin/rm -rf ${BUILD_RESULT}/du/${COMPONENT_RESULT} mkdir -p ${BUILD_RESULT}/du/${COMPONENT_RESULT} 2>/dev/null #export SHELLOPTS= sudo -E gmake JOBS=${JOBS} WS_DEBS=${BUILD_RESULT}/du/${COMPONENT_RESULT} deb #fakeroot gmake JOBS=${JOBS} WS_DEBS=${BUILD_RESULT}/du/${COMPONENT_RESULT} deb #| tee ${WORKSPACE}/log.${COMPONENT}.txt RES=$? sudo -E gmake debclobber sudo -E apt-get install -y oracle-jdk if (( $RES > 0 )); then exit 1 fi |
After assembling the components, you can check it for installation in a separate new zone.