From: Tomas Krizek Date: Mon, 13 Aug 2018 15:03:36 +0000 (+0200) Subject: scripts: utility script for OBS test build X-Git-Tag: v3.0.0^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=870a39427f7f9ba1407b8892dce2dc93c949cc54;p=thirdparty%2Fknot-resolver.git scripts: utility script for OBS test build --- diff --git a/scripts/build-in-obs.sh b/scripts/build-in-obs.sh index 51d554207..976d33664 100755 --- a/scripts/build-in-obs.sh +++ b/scripts/build-in-obs.sh @@ -8,7 +8,7 @@ project=home:CZ-NIC:$1 package=knot-resolver -if ! [[ "$1" == *-devel ]]; then +if ! [[ "$1" == *-devel || "$1" == *-testing ]]; then read -p "Pushing to '$project', are you sure? [y/N]: " yn case $yn in [Yy]* ) break;; diff --git a/scripts/obs-testbuild.sh b/scripts/obs-testbuild.sh new file mode 100755 index 000000000..f44cecc3a --- /dev/null +++ b/scripts/obs-testbuild.sh @@ -0,0 +1,38 @@ +#!/bin/bash +# +# Builds the checked out version in knot-dns-testing OBS repository + +set -o errexit -o nounset -o xtrace + +force=false + +# Read options +while getopts "f" o; do + case "${o}" in + f) + force=true + ;; + *) + ;; + esac +done +shift $((OPTIND-1)) + +# Clean working tree +if [[ $(git status --porcelain | wc -l) -ne 0 ]]; then + if [ "$force" = false ]; then + echo "working tree dirty. force clean with '-f'" + exit 1 + fi + git clean -dfx + git reset --hard +fi + +# Create tarball +scripts/make-archive.sh + +# Submit to OBS +scripts/make-distrofiles.sh -s +scripts/build-in-obs.sh knot-resolver-testing + +echo "Check results at https://build.opensuse.org/package/show/home:CZ-NIC:knot-resolver-testing/knot-resolver"