From 3a8241aa913c2a993d7b0463ae32262a1e0786a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julian=20Gro=C3=9F?= Date: Sat, 8 Jun 2024 12:48:02 +0200 Subject: [PATCH] Add a script to more easily build Debian and RPM server packages. --- tools/ci-scripts/build_server_package.bash | 86 ++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100755 tools/ci-scripts/build_server_package.bash diff --git a/tools/ci-scripts/build_server_package.bash b/tools/ci-scripts/build_server_package.bash new file mode 100755 index 0000000000..f8f66ad579 --- /dev/null +++ b/tools/ci-scripts/build_server_package.bash @@ -0,0 +1,86 @@ +#!/bin/bash + +# Copyright 2024 Overte e.V. +# SPDX-License-Identifier: Apache-2.0 + +# OS=debian-11 TAG=2024.06.1 ARCH=amd64 ./build_server_package.bash +# Currently supported OSs debian-11 debian-12 ubuntu-20.04 ubuntu-22.04 ubuntu-24.04 fedora-39 fedora-40 rockylinux-9 +# Remember to add a CMAKE_BACKTRACE_URL below if applicable. + +echo "Cloning Overte $TAG …" +git clone --depth 1 --branch $TAG https://github.com/overte-org/overte.git Overte-$TAG-$OS-$ARCH +cd Overte-$TAG-$OS-$ARCH + +cat > commands.bash <