Changeset 739


Ignore:
Timestamp:
Apr 11, 2016, 8:56:45 PM (9 years ago)
Author:
dmik
Message:

rpmbuild-bot: Add support for clean=test command.

This cleans up the results of the "test" command instead
of "build".

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified rpmbuild-bot/rpmbuild-bot.sh

    r738 r739  
    3232#
    3333# > rpmbuild-bot.sh SPEC[=VERSION]
    34 # >                 [ upload[=REPO] | test[=MODE] | clean | remove[=REPO] ]
     34# >                 [ upload[=REPO] | test[=MODE] | clean[=test] | remove[=REPO] ]
    3535# >                 [-f]
    3636#
     
    124124# tree state, wrong patches etc.). Note that normally you don't need to use
    125125# this command; it's an emergency-only tool.
     126#
     127# The "clean" command needs log files from the "build" command and will fail
     128# otherwise.
     129#
     130# If the "clean" command is given a "test" argument, it will clean up the
     131# results of the "test" command instead of "build". The log file from the
     132# "test" command needs to be present or the command will fail.
    126133#
    127134# Removing packages
     
    237244build_cmd()
    238245{
    239   # Check settings.
    240   test -n "$RPMBUILD_BOT_ARCH_LIST" || die "RPMBUILD_BOT_ARCH_LIST is empty."
    241 
    242246  local base_arch="${RPMBUILD_BOT_ARCH_LIST##* }"
    243247
     
    382386    if [ -n "$rpms" ] ; then
    383387      echo "Successfully generated the following RPMs:"
    384       for f in $rpms ; do
     388      for f in $rpms; do
    385389        echo "$f"
    386390      done
     
    463467clean_cmd()
    464468{
     469  if [ "$command_arg" = "test" ] ; then
     470    # Cleanup after "test" command.
     471    local base_arch="${RPMBUILD_BOT_ARCH_LIST##* }"
     472    local log_file="$log_dir/test/$spec_name.log"
     473
     474    [ -f "$log_file" ] || die "File '$test_log' is not found."
     475
     476    local rpms=`grep "^Wrote: \+.*\.\($base_arch\.rpm\|noarch\.rpm\)$" "$log_file" | sed -e "s#^Wrote: \+##g"`
     477    if [ -n "$rpms" ] ; then
     478      for f in $rpms; do
     479        echo "Removing $f..."
     480        run rm -f "$f"
     481      done
     482      echo "Removing $log_file[.bak]..."
     483      run rm -f "$log_file" "$log_file".bak
     484    else
     485      die "Cannot find .$base_arch.rpm/.noarch.rpm file names in '$log_file'."
     486    fi
     487
     488    return
     489  fi
     490
     491  # Cleanup after "build command".
    465492  [ -f "$spec_list" ] || die \
    466493"File '$spec_list' is not found.
     
    613640. "${0%%.sh}-env.sh"
    614641
     642# Check common settings.
     643test -n "$RPMBUILD_BOT_ARCH_LIST" || die "RPMBUILD_BOT_ARCH_LIST is empty."
     644
    615645run eval "${command_name}_cmd"
    616646
Note: See TracChangeset for help on using the changeset viewer.