[oVirt Jenkins] ovirt-system-tests_basic-suite-master_nightly -
Build # 321 - Failure!
by jenkins@jenkins.phx.ovirt.org
Project: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_nightly/
Build: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_night...
Build Number: 321
Build Status: Failure
Triggered By: Started by timer
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #321
[Galit Rosenthal] Remove he-basic-ipv6_suite_4.3 from check-patch
-----------------
Failed Tests:
-----------------
1 tests failed.
FAILED: basic-suite-master.test-scenarios.100_basic_ui_sanity_pytest.test_virtual_machines[firefox]
Error Message:
TimeoutException: Message: Wait until VM list view is displayed failed
Stack Trace:
ovirt_driver = <test_utils.navigation.driver.Driver object at 0x7f88884a56d0>
setup_virtual_machines = None
save_screenshot = <function save at 0x7f8888fdae60>
save_page_source = <function save at 0x7f8888eedd70>
def test_virtual_machines(ovirt_driver, setup_virtual_machines,
save_screenshot, save_page_source):
try:
webadmin_menu = WebAdminLeftMenu(ovirt_driver)
> vm_list_view = webadmin_menu.open_vm_list_view()
../basic-suite-master/test-scenarios/100_basic_ui_sanity_pytest.py:266:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
../basic-suite-master/test_utils/page_objects/WebAdminLeftMenu.py:22: in open_vm_list_view
vm_list_view.wait_for_displayed()
../basic-suite-master/test_utils/page_objects/Displayable.py:14: in wait_for_displayed
self.ovirt_driver.wait_until('Wait until ' + self.get_displayable_name() + ' is displayed failed', self.is_displayed)
../basic-suite-master/test_utils/navigation/driver.py:282: in wait_until
self._wait_until(message, testlib.SHORT_TIMEOUT, condition_method, *args)
../basic-suite-master/test_utils/navigation/driver.py:288: in _wait_until
WebDriverWait(self.driver, timeout).until(ConditionClass(condition_method, *args), message)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <selenium.webdriver.support.wait.WebDriverWait (session="20a964de-35e1-4bae-ae6d-882d8338d5f3")>
method = <test_utils.navigation.driver.ConditionClass object at 0x7f8887a50190>
message = 'Wait until VM list view is displayed failed'
def until(self, method, message=''):
"""Calls the method provided with the driver as an argument until the \
return value is not False."""
screen = None
stacktrace = None
end_time = time.time() + self._timeout
while True:
try:
value = method(self._driver)
if value:
return value
except self._ignored_exceptions as exc:
screen = getattr(exc, 'screen', None)
stacktrace = getattr(exc, 'stacktrace', None)
time.sleep(self._poll)
if time.time() > end_time:
break
> raise TimeoutException(message, screen, stacktrace)
E TimeoutException: Message: Wait until VM list view is displayed failed
../.local/lib/python2.7/site-packages/selenium/webdriver/support/wait.py:80: TimeoutException
4 years, 2 months
[oVirt Jenkins] ovirt-system-tests_basic-suite-master_nightly -
Build # 319 - Failure!
by jenkins@jenkins.phx.ovirt.org
Project: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_nightly/
Build: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-master_night...
Build Number: 319
Build Status: Failure
Triggered By: Started by timer
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #319
[Martin Necas] Ansible: fix collection path and use sed to rename
-----------------
Failed Tests:
-----------------
1 tests failed.
FAILED: basic-suite-master.test-scenarios.002_bootstrap_pytest.test_verify_engine_backup
Error Message:
AssertionError: False != True after 600 seconds
Stack Trace:
ansible_engine = <ost_utils.ansible._AnsibleModuleMapper object at 0x7f604c1e4d50>
engine_api = <ovirtsdk4.Connection object at 0x7f604f8021d0>
@order_by(_TEST_LIST)
def test_verify_engine_backup(ansible_engine, engine_api):
ansible_engine.file(
path='/var/log/ost-engine-backup',
state='directory',
mode='0755'
)
engine = engine_api.system_service()
with test_utils.TestEvent(engine, [9024, 9025]): #backup started event, completed
ansible_engine.shell(
> 'engine-backup '
'--mode=backup '
'--file=/var/log/ost-engine-backup/backup.tgz '
'--log=/var/log/ost-engine-backup/log.txt'
)
../basic-suite-master/test-scenarios/002_bootstrap_pytest.py:1341:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib64/python2.7/contextlib.py:35: in __exit__
self.gen.throw(type, value, traceback)
../basic-suite-master/test_utils/__init__.py:252: in TestEvent
lambda:
/usr/lib/python2.7/site-packages/ovirtlago/testlib.py:286: in assert_true_within_long
assert_equals_within_long(func, True, allowed_exceptions)
/usr/lib/python2.7/site-packages/ovirtlago/testlib.py:273: in assert_equals_within_long
func, value, LONG_TIMEOUT, allowed_exceptions=allowed_exceptions
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
func = <function <lambda> at 0x7f604c1ab050>, value = True, timeout = 600
allowed_exceptions = [], initial_wait = 0
def assert_equals_within(
func, value, timeout, allowed_exceptions=None, initial_wait=10
):
allowed_exceptions = allowed_exceptions or []
with utils.EggTimer(timeout) as timer:
while not timer.elapsed():
try:
res = func()
if res == value:
return
except Exception as exc:
if _instance_of_any(exc, allowed_exceptions):
time.sleep(3)
continue
LOGGER.exception("Unhandled exception in %s", func)
raise
if initial_wait == 0:
time.sleep(3)
else:
time.sleep(initial_wait)
initial_wait = 0
try:
raise AssertionError(
> '%s != %s after %s seconds' % (res, value, timeout)
)
E AssertionError: False != True after 600 seconds
/usr/lib/python2.7/site-packages/ovirtlago/testlib.py:252: AssertionError
4 years, 2 months
[oVirt Jenkins] ovirt-system-tests_basic-suite-4.3_nightly - Build
# 319 - Failure!
by jenkins@jenkins.phx.ovirt.org
Project: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-4.3_nightly/
Build: https://jenkins.ovirt.org/job/ovirt-system-tests_basic-suite-4.3_nightly/...
Build Number: 319
Build Status: Failure
Triggered By: Started by timer
-------------------------------------
Changes Since Last Success:
-------------------------------------
Changes for Build #319
[Martin Necas] Ansible: fix collection path and use sed to rename
-----------------
Failed Tests:
-----------------
1 tests failed.
FAILED: 005_network_by_label.assign_labeled_network
Error Message:
False != True after 180 seconds
Stack Trace:
Traceback (most recent call last):
File "/usr/lib64/python2.7/unittest/case.py", line 369, in run
testMethod()
File "/usr/lib/python2.7/site-packages/nose/case.py", line 197, in runTest
self.test(*self.arg)
File "/usr/lib/python2.7/site-packages/ovirtlago/testlib.py", line 142, in wrapped_test
test()
File "/usr/lib/python2.7/site-packages/ovirtlago/testlib.py", line 60, in wrapper
return func(get_test_prefix(), *args, **kwargs)
File "/usr/lib/python2.7/site-packages/ovirtlago/testlib.py", line 79, in wrapper
prefix.virt_env.engine_vm().get_api(api_ver=4), *args, **kwargs
File "/home/jenkins/agent/workspace/ovirt-system-tests_basic-suite-4.3_nightly/ovirt-system-tests/basic-suite-4.3/test-scenarios/005_network_by_label.py", line 149, in assign_labeled_network
host_service, LABELED_NET_NAME))
File "/usr/lib/python2.7/site-packages/ovirtlago/testlib.py", line 282, in assert_true_within_short
assert_equals_within_short(func, True, allowed_exceptions)
File "/usr/lib/python2.7/site-packages/ovirtlago/testlib.py", line 266, in assert_equals_within_short
func, value, SHORT_TIMEOUT, allowed_exceptions=allowed_exceptions
File "/usr/lib/python2.7/site-packages/ovirtlago/testlib.py", line 252, in assert_equals_within
'%s != %s after %s seconds' % (res, value, timeout)
AssertionError: False != True after 180 seconds
4 years, 2 months
Build failed in Jenkins: deploy-to_ovirt-master_tested #12695
by jenkins@jenkins.phx.ovirt.org
See <https://jenkins.ovirt.org/job/deploy-to_ovirt-master_tested/12695/display...>
Changes:
------------------------------------------
Started by upstream project "ovirt-master_change-queue-tester" build number 25613
originally caused by:
Started by upstream project "ovirt-master_change-queue" build number 69773
originally caused by:
Started by upstream project "ovirt-system-tests_standard-on-merge" build number 1196
originally caused by:
Triggered by Gerrit: https://gerrit.ovirt.org/110982
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building remotely on vm0010.workers-phx.ovirt.org (el7 phx nested) in workspace <https://jenkins.ovirt.org/job/deploy-to_ovirt-master_tested/ws/>
[ssh-agent] Looking for ssh-agent implementation...
[ssh-agent] Exec ssh-agent (binary ssh-agent on a remote machine)
$ ssh-agent
SSH_AUTH_SOCK=/tmp/ssh-hju8PKuwGGEe/agent.17437
SSH_AGENT_PID=17439
[ssh-agent] Started.
Running ssh-add (command line suppressed)
Identity added: <https://jenkins.ovirt.org/job/deploy-to_ovirt-master_tested/ws/@tmp/priva...> (<https://jenkins.ovirt.org/job/deploy-to_ovirt-master_tested/ws/@tmp/priva...)>
[ssh-agent] Using credentials deploy-ovirt-experimental (SSH key for deploying to the tested repo)
[deploy-to_ovirt-master_tested] $ /bin/bash -xe /tmp/jenkins8411276741179915740.sh
+ [[ jenkins:https://jenkins.ovirt.org/job/ovirt-system-tests_standard-on-merg... == '' ]]
+ queue_name=ovirt-master
+ echo repo-extra-dir:master
+ echo jenkins:https://jenkins.ovirt.org/job/ovirt-system-tests_standard-on-merg...
+ ssh -o StrictHostKeyChecking=no deploy-ovirt-experimental(a)resources.ovirt.org
Pseudo-terminal will not be allocated because stdin is not a terminal.
Warning: Permanently added 'resources.ovirt.org,66.187.230.28' (ECDSA) to the list of known hosts.
+ BASE_DIR=/srv/resources/repos/ovirt/tested
+ PUBLISH_MD_COPIES=50
+ main
+ local tmp_dir
+ mkdir -p /srv/resources/repos/ovirt/tested
++ mktemp -d /srv/resources/repos/ovirt/tested/.deploy.XXXXXXXXXX
Collecting packages
+ tmp_dir=/srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1
+ trap 'rm -rf '\''/srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1'\''' EXIT HUP
+ echo 'Collecting packages'
+ collect_packages /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1
+ local repoman_dst=/srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1
+ repoman --temp-dir generate-in-repo --option main.allowed_repo_paths=/srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1 --option main.on_empty_source=warn /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1 add conf:stdin
2020-08-27 11:09:40,439::INFO::repoman.cmd::
2020-08-27 11:09:40,439::INFO::repoman.cmd::Adding artifacts to the repo /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1
2020-08-27 11:09:40,439::INFO::repoman.common.repo::Adding repo extra dir master
2020-08-27 11:09:40,461::INFO::repoman.common.stores.RPM::Loading repo /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/master
2020-08-27 11:09:40,461::INFO::repoman.common.stores.RPM::Repo /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/master loaded
2020-08-27 11:09:40,462::INFO::repoman.common.stores.iso::Loading repo /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/master
2020-08-27 11:09:40,462::INFO::repoman.common.stores.iso::Repo /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/master loaded
2020-08-27 11:09:40,471::INFO::repoman.common.repo::Resolving artifact source jenkins:https://jenkins.ovirt.org/job/ovirt-system-tests_standard-on-merg...
2020-08-27 11:09:41,141::INFO::repoman.common.sources.jenkins::Parsing jenkins URL: https://jenkins.ovirt.org/job/ovirt-system-tests_standard-on-merge/1196/
2020-08-27 11:09:41,143::INFO::repoman.common.sources.jenkins:: Got URL: https://jenkins.ovirt.org/job/ovirt-system-tests_standard-on-merge/1196//...
2020-08-27 11:09:41,143::INFO::repoman.common.sources.jenkins:: Got URL: https://jenkins.ovirt.org/job/ovirt-system-tests_standard-on-merge/1196//...
2020-08-27 11:09:41,144::INFO::root:: Done
2020-08-27 11:09:41,205::INFO::root::Downloading https://jenkins.ovirt.org/job/ovirt-system-tests_standard-on-merge/1196//..., length 20K ...
%[-----------------------25------------------------50-----------------------75------------------------] %[====================================================================================================]
2020-08-27 11:09:41,383::INFO::repoman.common.stores.RPM::Adding package /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/.lago_tmp/tmpb5pjFB/tmpNiLpbO/ovirtlib-0.0.1-0.20200827105650.git947d223.el7.src.rpm to repo /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/master
2020-08-27 11:09:41,436::INFO::root::Downloading https://jenkins.ovirt.org/job/ovirt-system-tests_standard-on-merge/1196//..., length 47K ...
%[-----------------------25------------------------50-----------------------75------------------------] %[====================================================================================================]
2020-08-27 11:09:41,562::INFO::repoman.common.stores.RPM::Adding package /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/.lago_tmp/tmpb5pjFB/tmpNiLpbO/python2-ovirtlib-0.0.1-0.20200827105650.git947d223.el7.noarch.rpm to repo /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/master
2020-08-27 11:09:41,563::INFO::repoman.cmd::
2020-08-27 11:09:41,564::INFO::repoman.common.stores.RPM::Saving new added rpms into /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/master
2020-08-27 11:09:41,564::INFO::root::Saving /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/master/rpm/el7/SRPMS/ovirtlib-0.0.1-0.20200827105650.git947d223.el7.src.rpm
2020-08-27 11:09:41,566::INFO::root::Saving /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/master/rpm/el7/noarch/python2-ovirtlib-0.0.1-0.20200827105650.git947d223.el7.noarch.rpm
2020-08-27 11:09:41,566::INFO::repoman.common.stores.RPM::
2020-08-27 11:09:41,567::INFO::repoman.common.stores.RPM::Updating metadata
2020-08-27 11:09:41,567::INFO::repoman.common.stores.RPM:: Creating metadata for el7
2020-08-27 11:09:41,960::INFO::repoman.common.stores.RPM::
2020-08-27 11:09:41,960::INFO::repoman.common.stores.RPM::Creating symlinks
2020-08-27 11:09:41,961::INFO::repoman.common.stores.RPM::
2020-08-27 11:09:41,961::INFO::repoman.common.stores.RPM::Saved /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/master
2020-08-27 11:09:41,961::INFO::repoman.common.stores.iso::Saving new added isos into /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/master
2020-08-27 11:09:41,961::INFO::repoman.common.stores.iso::
2020-08-27 11:09:41,961::INFO::repoman.common.stores.iso::Saved /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/master
2020-08-27 11:09:41,963::INFO::repoman.common.repo::Cleaning up temporary dir /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/.lago_tmp/tmpb5pjFB/tmpNiLpbO
2020-08-27 11:09:41,963::INFO::repoman.common.repo::Cleaning up temporary dir /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1/.lago_tmp/tmpb5pjFB
Publishing to repo
+ echo 'Publishing to repo'
+ push_to_tested /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1 /srv/resources/repos/ovirt/tested
+ local pkg_src=/srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1
+ local pkg_dst=/srv/resources/repos/ovirt/tested
+ iso_cleanup /srv/resources/repos/ovirt/tested
+ local max_file_age=8
+ local minimal_files_allowed=3
++ find /srv/resources/repos/ovirt/tested -mindepth 1 -maxdepth 1 -type d '!' -name '.*'
+ list_of_sub_dirs='/srv/resources/repos/ovirt/tested/master.under_testing
/srv/resources/repos/ovirt/tested/latest
/srv/resources/repos/ovirt/tested/4.3.under_testing
/srv/resources/repos/ovirt/tested/master
/srv/resources/repos/ovirt/tested/4.4
/srv/resources/repos/ovirt/tested/4.2
/srv/resources/repos/ovirt/tested/4.3'
+ test -z '/srv/resources/repos/ovirt/tested/master.under_testing
/srv/resources/repos/ovirt/tested/latest
/srv/resources/repos/ovirt/tested/4.3.under_testing
/srv/resources/repos/ovirt/tested/master
/srv/resources/repos/ovirt/tested/4.4
/srv/resources/repos/ovirt/tested/4.2
/srv/resources/repos/ovirt/tested/4.3'
+ for dir in '${list_of_sub_dirs[@]}'
+ full_path=/srv/resources/repos/ovirt/tested/master.under_testing/iso/ovirt-node-ng-installer
+ '[' '!' -d /srv/resources/repos/ovirt/tested/master.under_testing/iso/ovirt-node-ng-installer ']'
+ isos_matching_policy=($(find ${full_path} -type f -name "*.iso" -mtime +${max_file_age}))
++ find /srv/resources/repos/ovirt/tested/master.under_testing/iso/ovirt-node-ng-installer -type f -name '*.iso' -mtime +8
+ test -z /srv/resources/repos/ovirt/tested/master.under_testing/iso/ovirt-node-ng-installer/4.4.0-2020051007/el8/ovirt-node-ng-installer-4.4.0-2020051007.el8.iso
+ all_isos=($(find ${full_path} -type f -name "*.iso"))
++ find /srv/resources/repos/ovirt/tested/master.under_testing/iso/ovirt-node-ng-installer -type f -name '*.iso'
there are less than 3 isos under /srv/resources/repos/ovirt/tested/master.under_testing/iso/ovirt-node-ng-installer
following path does not exist: /srv/resources/repos/ovirt/tested/latest/iso/ovirt-node-ng-installer
+ '[' 2 -lt 3 ']'
+ echo 'there are less than 3 isos under /srv/resources/repos/ovirt/tested/master.under_testing/iso/ovirt-node-ng-installer'
+ continue
+ for dir in '${list_of_sub_dirs[@]}'
+ full_path=/srv/resources/repos/ovirt/tested/latest/iso/ovirt-node-ng-installer
+ '[' '!' -d /srv/resources/repos/ovirt/tested/latest/iso/ovirt-node-ng-installer ']'
+ echo 'following path does not exist: /srv/resources/repos/ovirt/tested/latest/iso/ovirt-node-ng-installer'
+ continue
+ for dir in '${list_of_sub_dirs[@]}'
+ full_path=/srv/resources/repos/ovirt/tested/4.3.under_testing/iso/ovirt-node-ng-installer
+ '[' '!' -d /srv/resources/repos/ovirt/tested/4.3.under_testing/iso/ovirt-node-ng-installer ']'
+ isos_matching_policy=($(find ${full_path} -type f -name "*.iso" -mtime +${max_file_age}))
++ find /srv/resources/repos/ovirt/tested/4.3.under_testing/iso/ovirt-node-ng-installer -type f -name '*.iso' -mtime +8
+ test -z /srv/resources/repos/ovirt/tested/4.3.under_testing/iso/ovirt-node-ng-installer/4.3.10-2020051108/el7/ovirt-node-ng-installer-4.3.10-2020051108.el7.iso
+ all_isos=($(find ${full_path} -type f -name "*.iso"))
++ find /srv/resources/repos/ovirt/tested/4.3.under_testing/iso/ovirt-node-ng-installer -type f -name '*.iso'
there are less than 3 isos under /srv/resources/repos/ovirt/tested/4.3.under_testing/iso/ovirt-node-ng-installer
+ '[' 2 -lt 3 ']'
+ echo 'there are less than 3 isos under /srv/resources/repos/ovirt/tested/4.3.under_testing/iso/ovirt-node-ng-installer'
+ continue
+ for dir in '${list_of_sub_dirs[@]}'
+ full_path=/srv/resources/repos/ovirt/tested/master/iso/ovirt-node-ng-installer
+ '[' '!' -d /srv/resources/repos/ovirt/tested/master/iso/ovirt-node-ng-installer ']'
+ isos_matching_policy=($(find ${full_path} -type f -name "*.iso" -mtime +${max_file_age}))
++ find /srv/resources/repos/ovirt/tested/master/iso/ovirt-node-ng-installer -type f -name '*.iso' -mtime +8
no iso files matching policy under /srv/resources/repos/ovirt/tested/master
following path does not exist: /srv/resources/repos/ovirt/tested/4.4/iso/ovirt-node-ng-installer
+ test -z ''
+ echo 'no iso files matching policy under /srv/resources/repos/ovirt/tested/master'
+ continue
+ for dir in '${list_of_sub_dirs[@]}'
+ full_path=/srv/resources/repos/ovirt/tested/4.4/iso/ovirt-node-ng-installer
+ '[' '!' -d /srv/resources/repos/ovirt/tested/4.4/iso/ovirt-node-ng-installer ']'
+ echo 'following path does not exist: /srv/resources/repos/ovirt/tested/4.4/iso/ovirt-node-ng-installer'
+ continue
+ for dir in '${list_of_sub_dirs[@]}'
+ full_path=/srv/resources/repos/ovirt/tested/4.2/iso/ovirt-node-ng-installer
+ '[' '!' -d /srv/resources/repos/ovirt/tested/4.2/iso/ovirt-node-ng-installer ']'
+ isos_matching_policy=($(find ${full_path} -type f -name "*.iso" -mtime +${max_file_age}))
++ find /srv/resources/repos/ovirt/tested/4.2/iso/ovirt-node-ng-installer -type f -name '*.iso' -mtime +8
+ test -z /srv/resources/repos/ovirt/tested/4.2/iso/ovirt-node-ng-installer/4.2.0-2019091608/el7/ovirt-node-ng-installer-4.2.0-2019091608.el7.iso
+ all_isos=($(find ${full_path} -type f -name "*.iso"))
++ find /srv/resources/repos/ovirt/tested/4.2/iso/ovirt-node-ng-installer -type f -name '*.iso'
there are less than 3 isos under /srv/resources/repos/ovirt/tested/4.2/iso/ovirt-node-ng-installer
+ '[' 2 -lt 3 ']'
+ echo 'there are less than 3 isos under /srv/resources/repos/ovirt/tested/4.2/iso/ovirt-node-ng-installer'
+ continue
+ for dir in '${list_of_sub_dirs[@]}'
+ full_path=/srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer
+ '[' '!' -d /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer ']'
+ isos_matching_policy=($(find ${full_path} -type f -name "*.iso" -mtime +${max_file_age}))
++ find /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer -type f -name '*.iso' -mtime +8
+ test -z /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020081808/el7/ovirt-node-ng-installer-4.3.11-2020081808.el7.iso
+ all_isos=($(find ${full_path} -type f -name "*.iso"))
++ find /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer -type f -name '*.iso'
+ '[' 9 -lt 3 ']'
+ isos_for_deletion_str=/srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020081808/el7/ovirt-node-ng-installer-4.3.11-2020081808.el7.iso
+ all_isos_str='/srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020081908/el7/ovirt-node-ng-installer-4.3.11-2020081908.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082008/el7/ovirt-node-ng-installer-4.3.11-2020082008.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082408/el7/ovirt-node-ng-installer-4.3.11-2020082408.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020081808/el7/ovirt-node-ng-installer-4.3.11-2020081808.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082108/el7/ovirt-node-ng-installer-4.3.11-2020082108.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082208/el7/ovirt-node-ng-installer-4.3.11-2020082208.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082508/el7/ovirt-node-ng-installer-4.3.11-2020082508.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082308/el7/ovirt-node-ng-installer-4.3.11-2020082308.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082608/el7/ovirt-node-ng-installer-4.3.11-2020082608.el7.iso'
+ '[' /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020081808/el7/ovirt-node-ng-installer-4.3.11-2020081808.el7.iso == '/srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020081908/el7/ovirt-node-ng-installer-4.3.11-2020081908.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082008/el7/ovirt-node-ng-installer-4.3.11-2020082008.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082408/el7/ovirt-node-ng-installer-4.3.11-2020082408.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020081808/el7/ovirt-node-ng-installer-4.3.11-2020081808.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082108/el7/ovirt-node-ng-installer-4.3.11-2020082108.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082208/el7/ovirt-node-ng-installer-4.3.11-2020082208.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082508/el7/ovirt-node-ng-installer-4.3.11-2020082508.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082308/el7/ovirt-node-ng-installer-4.3.11-2020082308.el7.iso /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020082608/el7/ovirt-node-ng-installer-4.3.11-2020082608.el7.iso' ']'
+ to_be_deleted=("${isos_matching_policy[@]}")
+ for file in '${to_be_deleted[@]}'
+ rm /srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020081808/el7/ovirt-node-ng-installer-4.3.11-2020081808.el7.iso
rm: cannot remove ���/srv/resources/repos/ovirt/tested/4.3/iso/ovirt-node-ng-installer/4.3.11-2020081808/el7/ovirt-node-ng-installer-4.3.11-2020081808.el7.iso���: No such file or directory
+ rm -rf /srv/resources/repos/ovirt/tested/.deploy.t72bBZeha1
Build step 'Execute shell' marked build as failure
$ ssh-agent -k
unset SSH_AUTH_SOCK;
unset SSH_AGENT_PID;
echo Agent pid 17439 killed;
[ssh-agent] Stopped.
4 years, 2 months