36f57b26b8
There are scripts to re-run depsolving with any backend based on config and log file. There is a new script to compare logs from two runs and report differences. This script will be installed system wide in final RPM. Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
25 lines
502 B
Bash
Executable File
25 lines
502 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
set -u
|
|
set -o pipefail
|
|
|
|
HERE=$(dirname "$0")
|
|
PATH=$HERE/../../bin:$PATH
|
|
PYTHONPATH=$HERE/../../:${PYTHONPATH:-}
|
|
export PATH PYTHONPATH
|
|
|
|
CONF=$1
|
|
LOG=${CONF%%.conf}.log
|
|
ARCH=$(head -n1 "$LOG" | tr ' ' '\n' | grep -- '--arch=')
|
|
|
|
CMD=(pungi-gather "--config=$CONF" "$ARCH" $(head -n1 "$LOG" | tr ' ' '\n' | grep '^--\(selfhosting\|fulltree\|greedy\|multilib\)'))
|
|
|
|
echo "${CMD[@]}"
|
|
if [ $# -le 1 ] || [ "$2" != "--interactive" ]; then
|
|
exec >"$LOG.dnf"
|
|
fi
|
|
exec 2>&1
|
|
|
|
exec "${CMD[@]}"
|