From c71a8ea25187ae4b3dd4d46582414af9460c5a86 Mon Sep 17 00:00:00 2001 From: Simon Marsh Date: Fri, 26 May 2023 22:53:17 +0100 Subject: [PATCH] add capability to push to git package --- Dockerfile.alpine | 2 +- Dockerfile.ubuntu | 2 +- build.sh | 23 ++++++++++++++++++----- 3 files changed, 20 insertions(+), 7 deletions(-) diff --git a/Dockerfile.alpine b/Dockerfile.alpine index ff322d7..d052c1f 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -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' ] diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 310dbea..0e20719 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -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' ] diff --git a/build.sh b/build.sh index d3a3823..400f3a5 100755 --- a/build.sh +++ b/build.sh @@ -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