mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-21 07:15:27 +00:00
de8dc87ecf
We need to have git setup before trying to get the build number. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
65 lines
2.2 KiB
YAML
65 lines
2.2 KiB
YAML
name: Fedora Copr Build
|
|
on:
|
|
push:
|
|
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 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: atomically create or retrieve the build number
|
|
id: version_number
|
|
if: github.event_name == 'push'
|
|
run: |
|
|
cd .. # check out parallel to subsurface sources
|
|
url="https://subsurface:${{ secrets.NIGHTLY_BUILDS }}@github.com/subsurface/nightly-builds"
|
|
# the clone followed by the pointless push should verify that the password is stored in the config
|
|
# that way the script doesn't need the password
|
|
git clone -b main https://github.com/subsurface/nightly-builds
|
|
cd nightly-builds
|
|
git remote set-url origin "$url"
|
|
git push origin main
|
|
cd ..
|
|
bash -x subsurface/scripts/get-or-create-build-nr.sh ${{ github.sha }}
|
|
cp nightly-builds/latest-subsurface-buildnumber subsurface
|
|
echo "CICD-release" > subsurface/latest-subsurface-buildnumber-extension
|
|
version=$(bash subsurface/scripts/get-version)
|
|
echo "version=$version" >> $GITHUB_OUTPUT
|
|
|
|
- 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: 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
|
|
|