Simon Marsh c71a8ea251
All checks were successful
continuous-integration/drone/push Build is passing
add capability to push to git package
2023-05-26 23:30:51 +01:00

46 lines
1023 B
Bash
Executable File

#!/bin/bash -e
##########################################################################
DIST=$(cat /dist)
ARTIFACTS=( 'bird' 'birdc' 'birdcl' )
VERSION=$(grep '^Version:' misc/bird.spec | cut -d' ' -f2)
URLT="https://git.burble.dn42/api/packages/burble/generic/bird/${VERSION}/%s"
echo "Building bird $VERSION for $DIST"
##########################################################################
# clear any previous build
if [ -f Makefile ]
then
make distclean
fi
if [ ! -f configure ];
then
autoreconf
fi
# configure it
./configure \
--prefix=/usr \
--sysconfdir=/etc/bird \
--localstatedir=/var \
2>&1 | tee conf.out
# build it
make -j2 2>&1 | tee build.out
# push artifacts to gitea
for artifact in "${ARTIFACTS[@]}"
do
echo "Uploading $artifact ..."
url=$(printf "$URLT" "${DIST}.${artifact}")
curl --user "burble:${TOKEN}" --upload-file "${artifact}" "$url"
done
echo "All done"
##########################################################################
# end of file