From edaebb65d92a48d7075c8c1f64c5ffd87054827b Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 11:07:31 +0200 Subject: Adding debian version 4:7.4.7-1+deb12u1. Signed-off-by: Daniel Baumann --- debian/tests/odk-build-examples-java | 56 ++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100755 debian/tests/odk-build-examples-java (limited to 'debian/tests/odk-build-examples-java') diff --git a/debian/tests/odk-build-examples-java b/debian/tests/odk-build-examples-java new file mode 100755 index 000000000..95d00d571 --- /dev/null +++ b/debian/tests/odk-build-examples-java @@ -0,0 +1,56 @@ +#!/bin/bash +# autopkgtest check: Run the odk/build-examples check against an installed +# version of the LibreOffice SDK +# (c) 2017 Software in the Public Interest, Inc. +# Authors: Rene Engelhard + +set -e +set -E + +# skip on Zero using architectures +if java -version 2>&1 | grep -q Zero; then + echo "Zero-using architecture. Skipping." + exit 77 +fi + +SRCDIR=`pwd` +CHECK_PARALLELISM=1 + +function unapply() { + cd $SRCDIR + echo + echo "====== Unapplying the patch ======" + patch -p1 -R < ./debian/tests/patches/odk-build-examples-standalone.diff +} + +trap "unapply" ERR + +# skip if building as root: +# unopkg errors out with "ERROR: Cannot run unopkg as root without --shared or --bundled option." +# if ran as root +if [ `id -u` = "0" ]; then + exit 77 +fi + +echo +echo "====== Patching the tree to build the odk build-examples test against an existing installation ======" +patch -p1 < ./debian/tests/patches/odk-build-examples-standalone.diff + +if [ ! -f config_host.mk ]; then + echo + echo "====== Generating configuration =======" + rm -f config_host.mk + ./debian/rules config_host.mk +fi + +echo +echo "====== Starting build with ${CHECK_PARALLELISM} job against /usr/lib/libreoffice/sdk ======" + +cd $SRCDIR/odk + +export PARALLELISM=$CHECK_PARALLELISM +make -rk \ + CustomTarget_odk/build-examples_java verbose=t + +unapply + -- cgit v1.2.3