add capability to push to git package
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simon Marsh 2023-05-26 22:53:17 +01:00
parent 17e9d96ab9
commit c71a8ea251
3 changed files with 20 additions and 7 deletions

View File

@ -1,5 +1,5 @@
FROM alpine:3.18
RUN apk add --update bash build-base git autoconf flex bison linux-headers ncurses-dev readline-dev && rm -rf /var/cache/apk/*
RUN apk add --update bash build-base curl git autoconf flex bison linux-headers ncurses-dev readline-dev && rm -rf /var/cache/apk/*
ADD build.sh /build.sh
RUN echo "alpine" > /dist
ENTRYPOINT [ '/build.sh' ]

View File

@ -1,5 +1,5 @@
FROM ubuntu:jammy
RUN apt -y update && apt -y dist-upgrade && apt -y install build-essential git autoconf flex bison linux-headers-generic libncurses-dev libreadline-dev && apt -y autoremove --purge && apt -y autoclean && rm -rf /var/cache/apt/archives
RUN apt -y update && apt -y dist-upgrade && apt -y install build-essential curl git autoconf flex bison linux-headers-generic libncurses-dev libreadline-dev && apt -y autoremove --purge && apt -y autoclean && rm -rf /var/cache/apt/archives
ADD build.sh /build.sh
RUN echo "ubuntu" > /dist
ENTRYPOINT [ '/build.sh' ]

View File

@ -2,11 +2,18 @@
##########################################################################
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
make distclean
fi
if [ ! -f configure ];
@ -22,11 +29,17 @@ fi
2>&1 | tee conf.out
# build it
make -j3 \
2>&1 | tee build.out
make -j2 2>&1 | tee build.out
mkdir -p artifacts/${DIST} > /dev/null 2>&1
mv bird birdc birdcl artifacts/${DIST}
# 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