2014-03-25 09:45:11 +00:00
|
|
|
#######################################################################
|
|
|
|
#build script for local usage
|
|
|
|
#used for Linux/AIX/Ubuntu
|
|
|
|
#
|
|
|
|
###########################################################################
|
|
|
|
|
|
|
|
|
|
|
|
OSNAME=$(uname)
|
|
|
|
NAMEALL=$(uname -a)
|
2014-03-28 05:21:51 +00:00
|
|
|
CURDIR=`pwd`
|
2014-03-25 09:45:11 +00:00
|
|
|
|
|
|
|
echo "OSNAME is $OSNAME!"
|
|
|
|
echo "NAMEALL is $NAMEALL"
|
|
|
|
|
2014-03-28 05:21:51 +00:00
|
|
|
ls $CURDIR/makerpm
|
2014-03-25 09:45:11 +00:00
|
|
|
|
|
|
|
if [ $? -gt 0 ]; then
|
|
|
|
echo "Error:no repo exist, exit 1."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Get a lock, so can not do 2 builds at once
|
|
|
|
exec 8>/var/lock/xcatbld.lock
|
|
|
|
if ! flock -n 8; then
|
|
|
|
echo "Can't get lock /var/lock/xcatbld.lock. Someone else must be doing a build right now. Exiting...."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
#used only for hard code, will change later
|
|
|
|
|
2014-03-28 05:21:51 +00:00
|
|
|
rm -rf $CURDIR/build/
|
2014-03-25 09:45:11 +00:00
|
|
|
|
|
|
|
echo "==============================================="
|
|
|
|
echo $NAMEALL | egrep "Ubuntu"
|
|
|
|
|
|
|
|
#Check if it is an Ubuntu system
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
|
|
|
|
echo "This is an Ubuntu system"
|
|
|
|
pkg_type="snap"
|
|
|
|
build_string="Snap_Build"
|
|
|
|
cur_date=`date +%Y%m%d`
|
|
|
|
short_ver=`cat Version|cut -d. -f 1,2`
|
|
|
|
pkg_version="${short_ver}-${pkg_type}${cur_date}"
|
|
|
|
|
2014-03-28 05:21:51 +00:00
|
|
|
mkdir -p $CURDIR/build
|
2014-03-25 09:45:11 +00:00
|
|
|
|
|
|
|
for rpmname in xCAT-client xCAT-genesis-scripts perl-xCAT xCAT-server xCAT xCATsn xCAT-test; do
|
|
|
|
rpmname_low=`echo $rpmname | tr '[A-Z]' '[a-z]'`
|
|
|
|
echo "============================================"
|
|
|
|
echo "$rpmname_low"
|
|
|
|
cd $rpmname
|
|
|
|
dch -v $pkg_version -b -c debian/changelog $build_string
|
|
|
|
dpkg-buildpackage -uc -us
|
|
|
|
rc=$?
|
|
|
|
if [ $rc -gt 0 ]; then
|
|
|
|
echo "Error: $rpmname build package failed exit code $rc"
|
|
|
|
fi
|
|
|
|
cd -
|
|
|
|
mv ${rpmname_low}* /code/xcat-core/build
|
|
|
|
|
|
|
|
done
|
|
|
|
#delete all files except .deb file
|
2014-03-28 05:21:51 +00:00
|
|
|
find $CURDIR/build/* ! -name *.deb | xargs rm -f
|
2014-03-25 09:45:11 +00:00
|
|
|
|
|
|
|
else
|
|
|
|
#This is not an Ubuntu system
|
|
|
|
echo "This is an $OSNAME system"
|
|
|
|
|
|
|
|
rm -rf /root/rpmbuild/RPMS/noarch/*
|
|
|
|
rm -rf /root/rpmbuild/RPMS/x86_64/*
|
|
|
|
rm -rf /root/rpmbuild/RPMS/ppc64/*
|
2014-03-28 05:21:51 +00:00
|
|
|
mkdir -p $CURDIR/build/
|
2014-03-25 09:45:11 +00:00
|
|
|
# Build the rest of the noarch rpms
|
|
|
|
for rpmname in xCAT-client xCAT-server xCAT-IBMhpc xCAT-rmc xCAT-test xCAT-buildkit; do
|
|
|
|
if [ "$OSNAME" = "AIX" -a "$rpmname" = "xCAT-buildkit" ]; then continue; fi
|
|
|
|
./makerpm $rpmname
|
|
|
|
done
|
|
|
|
|
|
|
|
#build xCAT-genesis-scripts if it is x86_64 platform
|
|
|
|
ARCH=$(uname -p)
|
|
|
|
if [ "$ARCH" = "x64_64" ]; then
|
|
|
|
./makerpm xCAT-genesis-scripts x86_64
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
# Build the xCAT and xCATsn rpms for all platforms
|
|
|
|
for rpmname in xCAT xCATsn; do
|
|
|
|
if [ "$OSNAME" = "AIX" ]; then
|
|
|
|
./makerpm $rpmname
|
|
|
|
if [ $? -ne 0 ]; then FAILEDRPMS="$FAILEDRPMS $rpmname"; fi
|
|
|
|
else
|
|
|
|
for arch in x86_64 ppc64 s390x; do
|
|
|
|
./makerpm $rpmname $arch
|
|
|
|
if [ $? -ne 0 ]; then FAILEDRPMS="$FAILEDRPMS $rpmname-$arch"; fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2014-03-28 05:21:51 +00:00
|
|
|
cp /root/rpmbuild/RPMS/noarch/* $CURDIR/build/
|
|
|
|
cp /root/rpmbuild/RPMS/x86_64/* $CURDIR/build/
|
|
|
|
cp /root/rpmbuild/RPMS/ppc64/* $CURDIR/build/
|
|
|
|
|
|
|
|
#begin to create repo for redhat platform
|
|
|
|
|
|
|
|
if [ "$OSNAME" != "AIX" ]; then
|
|
|
|
cat >$CURDIR/build/xCAT-core.repo << EOF
|
|
|
|
[xcat-2-core]
|
|
|
|
name=xCAT 2 Core packages
|
|
|
|
baseurl=file:///$CURDIR
|
|
|
|
enabled=1
|
|
|
|
EOF
|
|
|
|
|
|
|
|
cp $CURDIR/build/xCAT-core.repo /etc/yum.repos.d/
|
|
|
|
|
|
|
|
fi
|
2014-03-25 09:45:11 +00:00
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|