trigger Fedora COPR build from GitHub

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2023-12-02 21:45:12 -08:00
parent 8192379a84
commit 8bf8f18962
3 changed files with 71 additions and 10 deletions

50
.github/workflows/fedora-copr-build.yml vendored Normal file
View file

@ -0,0 +1,50 @@
name: Fedora Copr Build
on:
push:
branches:
- master
- github-action-test
pull_request:
branches:
- master
jobs:
setup-build:
name: Submit build to Fedora COPR
# this seems backwards, but we want to run under Fedora, but Github doesn' support that
container: fedora:latest
runs-on: ubuntu-latest
steps:
- name: Check out sources
uses: actions/checkout@v1
- name: Setup API token for copr-cli
env:
API_TOKEN: ${{ secrets.COPR_TOKEN }}
API_LOGIN: ${{ secrets.COPR_LOGIN }}
run: |
mkdir -p "$HOME/.config"
cp packaging/copr/config.copr "$HOME/.config/copr"
sed -i "s/API_TOKEN/$API_TOKEN/;s/API_LOGIN/$API_LOGIN/" "$HOME/.config/copr"
- name: Setup build dependencies in the Fedora container
run: |
dnf -y install @development-tools @rpm-development-tools
dnf -y install copr-cli make
- name: setup git
run: |
git config --global --add safe.directory /__w/subsurface/subsurface
git config --global --add safe.directory /__w/subsurface/subsurface/libdivecomputer
- name: Checkout googlemaps
run: |
cd ..
git clone https://github.com/subsurface/googlemaps
- name: run the copr build script
run: |
cd ..
bash -x subsurface/packaging/copr/make-package.sh post

View file

@ -0,0 +1,6 @@
[copr-cli]
login = API_LOGIN
username = dirkhh
token = API_TOKEN
copr_url = https://copr.fedorainfracloud.org
# expiration date: 2024-05-31

View file

@ -9,7 +9,7 @@
# to make changes as they can't write to the OBS/COPR repos that I own... but this should be a great # to make changes as they can't write to the OBS/COPR repos that I own... but this should be a great
# starting point. # starting point.
if [[ $(pwd | grep "subsurface$") || ! -d subsurface || ! -d subsurface/libdivecomputer ]] ; then if [[ ! -d subsurface || ! -d subsurface/libdivecomputer ]] ; then
echo "Please start this script from the folder ABOVE the subsurface source directory" echo "Please start this script from the folder ABOVE the subsurface source directory"
exit 1; exit 1;
fi fi
@ -19,6 +19,8 @@ if [[ ! -d googlemaps ]] ; then
exit 1; exit 1;
fi fi
TOPDIR=$(pwd)
# ensure that the libdivecomputer module is there and current # ensure that the libdivecomputer module is there and current
cd subsurface cd subsurface
git submodule init git submodule init
@ -34,18 +36,21 @@ FOLDER="subsurface-$VERSION"
echo "building Subsurface" $VERSION "with libdivecomputer" $LIBDCREVISION echo "building Subsurface" $VERSION "with libdivecomputer" $LIBDCREVISION
# we put all of the files into the distrobuilds directory in order not to clutter the 'src' directory # create the file system structure that the rpmbuild tools expect
mkdir -p distrobuilds rpmdev-setuptree
cd distrobuilds
# in order for the tools to work as expected, let's run this from the HOME directory
cd $HOME
if [[ ! -d $FOLDER ]]; then if [[ ! -d $FOLDER ]]; then
mkdir $FOLDER mkdir $FOLDER
echo "copying sources" echo "copying sources"
(cd ../subsurface ; tar cf - . ) | (cd $FOLDER ; tar xf - ) (cd "$TOPDIR"/subsurface ; tar cf - . ) | (cd $FOLDER ; tar xf - )
cd $FOLDER cd $FOLDER
cp -a ../../googlemaps . cp -a "$TOPDIR"/googlemaps .
# make sure we only have the files we want (the builds should all be empty when running on GitHub)
rm -rf .git libdivecomputer/.git googlemaps/.git build build-mobile libdivecomputer/build googlemaps/build rm -rf .git libdivecomputer/.git googlemaps/.git build build-mobile libdivecomputer/build googlemaps/build
echo $GITVERSION > .gitversion echo $GITVERSION > .gitversion
echo $GITDATE > .gitdate echo $GITDATE > .gitdate
@ -73,11 +78,11 @@ if [[ "$1" = "post" ]] ; then
DESCRIPTION="This is the official Subsurface build, provided by the Subsurface team, including our own custom libdivecomputer." DESCRIPTION="This is the official Subsurface build, provided by the Subsurface team, including our own custom libdivecomputer."
else else
REPO="Subsurface-test" REPO="Subsurface-test"
SUMMARY="test build of the latest development version of Subsurface" SUMMARY="rolling build of the latest development version of Subsurface"
DESCRIPTION="This is a test build of Subsurface, provided by the Subsurface team, based on the latest sources. Only use if you need the bleeding edge of development." DESCRIPTION="This is a 'daily' build of Subsurface, provided by the Subsurface team, based on the latest sources. The builds aren't always well tested."
fi fi
cd rpmbuild cd "$HOME"/rpmbuild
cat ../../subsurface/packaging/copr/subsurface.spec | sed "s/%define latestVersion.*/%define latestVersion $VERSION/;s/DESCRIPTION/$DESCRIPTION/;s/SUMMARY/$SUMMARY/" > SPECS/subsurface.spec cat "$TOPDIR"/subsurface/packaging/copr/subsurface.spec | sed "s/%define latestVersion.*/%define latestVersion $VERSION/;s/DESCRIPTION/$DESCRIPTION/;s/SUMMARY/$SUMMARY/" > SPECS/subsurface.spec
rpmbuild --verbose -bs $(pwd)/SPECS/subsurface.spec rpmbuild --verbose -bs $(pwd)/SPECS/subsurface.spec
copr build --nowait $REPO $(pwd)/SRPMS/subsurface-$VERSION-1.fc*.src.rpm copr build --nowait $REPO $(pwd)/SRPMS/subsurface-$VERSION-1.fc*.src.rpm
fi fi