vinaigrette/daily-build

120 lines
2.9 KiB
Text
Raw Normal View History

2017-09-18 22:41:39 +02:00
#!/bin/bash
readonly THISSCRIPT=$0
readonly BRANCH_NIGHTLY="unstable"
2020-05-07 17:15:58 +02:00
readonly DISTRIBS="stretch buster"
2017-09-18 22:41:39 +02:00
readonly TIMETAG="$(date +%Y%m%d%H%M)"
readonly PACKAGES="moulinette SSOwat yunohost yunohost-admin"
readonly FORCE="false"
2017-09-18 22:41:39 +02:00
source /home/vinaigrette/config/config
function main()
{
2019-01-30 19:50:30 +01:00
#if [[ "$(tty)" == "not a tty" ]]
#then
# echo "You aint in a tty (are you in a 'lxc exec' ?)"
# echo "The script can't run because pbuilder won't be happy :|"
# exit
#fi
2018-04-26 18:35:52 +02:00
2017-09-18 22:41:39 +02:00
for PACKAGE in $PACKAGES;
do
for DISTRIB in $DISTRIBS;
do
echo "-------------------------------------"
echo "Looking for update in ${PACKAGE} for ${DISTRIB}... "
2017-09-18 22:41:39 +02:00
build_if_needed $PACKAGE $DISTRIB
done
2017-09-18 22:41:39 +02:00
done
echo "-------------------------------------"
}
function build_if_needed()
{
local PACKAGE=$1
local DISTRIB=$2
2017-09-18 22:41:39 +02:00
cd $GIT_REPOS/$PACKAGE
git fetch origin
# Check if there's a branch named distrib-branch (e.g. stretch-unstable)
# By default, keep just 'branch'
BRANCH_NIGHTLY_GIT="$BRANCH_NIGHTLY"
if git branch -ar | grep -q origin/$DISTRIB-$BRANCH_NIGHTLY
then
BRANCH_NIGHTLY_GIT="$DISTRIB-$BRANCH_NIGHTLY"
fi
# If the branch name is an alias to another branch, "resolve" the alias
if grep -q "ref: " .git/refs/heads/$BRANCH_NIGHTLY_GIT 2>/dev/null
then
BRANCH_NIGHTLY_GIT=$(cat .git/refs/heads/$BRANCH_NIGHTLY_GIT | tr '/' ' ' | awk '{print $4}')
fi
git checkout $BRANCH_NIGHTLY_GIT >/dev/null 2>/dev/null
if [ -z "$(git log ${BRANCH_NIGHTLY_GIT}..origin/${BRANCH_NIGHTLY_GIT})" ]; then
if ! "$FORCE";
then
echo "Sources up-to-date, nothing to build."
return
else
echo "Sources up-to-date but forcing build anyway."
fi
2017-09-18 22:41:39 +02:00
fi
git pull origin $BRANCH_NIGHTLY_GIT >/dev/null
git reset --hard origin/$BRANCH_NIGHTLY_GIT
2017-09-18 22:41:39 +02:00
VERSION=$(dpkg-parsechangelog -S Version 2>/dev/null)
2018-04-28 22:10:51 +02:00
VERSION_NIGHTLY="${VERSION}+${TIMETAG}"
2017-09-18 22:41:39 +02:00
# Tweak the changelog temporarily
echo "> Setting version in changelog to ${VERSION_NIGHTLY}"
rm -f debian/changelog.dch
cp debian/changelog debian/changelog.old
dch --package "${PACKAGE}" \
--force-bad-version \
-v "${VERSION_NIGHTLY}" \
-D "${BRANCH_NIGHTLY}" \
--force-distribution \
"Daily build." \
2017-09-18 22:41:39 +02:00
> /dev/null 2>&1
2020-05-11 04:24:44 +02:00
head -n 5 debian/changelog
2017-09-18 22:41:39 +02:00
# Launch the build using build_deb script
build
# Restore changelog
echo "> Restoring previous changelog"
cd $GIT_REPOS/$PACKAGE
cp debian/changelog.old debian/changelog
rm debian/changelog.old
}
function build()
{
# Create temporary folder
TMP_FOLDER=$(mktemp -d)
# Move files to a tmp folder
echo "> Exporting in $TMP_FOLDER ... "
git ls-files | xargs tar -czf archive.tar.gz
2017-09-18 22:41:39 +02:00
cat archive.tar.gz | tar -xz -C $TMP_FOLDER
rm archive.tar.gz
# Build Debian package
echo "> Starting build ..."
cd $TMP_FOLDER
$BUILD_DEB $DISTRIB $BRANCH_NIGHTLY .
2017-09-18 22:41:39 +02:00
}
main