* scripts/builds/build_vanilla.sh: Use an array to handle the varying arguments to rhpkg. * scripts/builds/check_signatures.sh: Quote variable usage. * scripts/builds/waive_issue.sh: Remove redundant 'test "x"' usage. * scripts/builds/waive_leapp_issue.sh: Likewise. * scripts/builds/waive_rpminspect.sh: Likewise. * scripts/builds/waive_usual_rpminspect.sh: Likewise and add missing WORKING_DIR variable. * scripts/builds/waive_usual_tier0.sh: Remove redundant 'test "x"' usage. Related: RHEL-155327 Related: RHEL-155339
48 lines
1.5 KiB
Bash
Executable File
48 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright (C) 2026 Red Hat, Inc.
|
|
# Written by:
|
|
# Andrew John Hughes <gnu.andrew@redhat.com>
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
# Builds a scratch build of vanilla OpenJDK with no local patches
|
|
|
|
SEPARATE_ARCHES=${1}
|
|
CMD=(rhpkg -v build --target java-openjdk-rhel-8-build --skip-nvr-check --nowait);
|
|
SUPPORTED_ARCHES="aarch64 ppc64le s390x x86_64";
|
|
|
|
if [ "${SEPARATE_ARCHES}" = "" ] ; then
|
|
SEPARATE_ARCHES=0;
|
|
fi
|
|
|
|
if [ "${SEPARATE_ARCHES}" -eq 1 ] ; then
|
|
for arch in ${SUPPORTED_ARCHES}; do \
|
|
ARCH_CMD=("${CMD[@]}" --arches "${arch}" --scratch) ;
|
|
echo "Executing ${ARCH_CMD[*]}";
|
|
command "${ARCH_CMD[@]}";
|
|
done
|
|
else
|
|
echo "Executing ${CMD[*]}";
|
|
command "${CMD[@]}";
|
|
fi
|
|
brew watch-task --mine
|
|
|
|
# Local Variables:
|
|
# compile-command: "shellcheck build_vanilla.sh"
|
|
# fill-column: 80
|
|
# indent-tabs-mode: nil
|
|
# sh-basic-offset: 4
|
|
# End:
|