Hello community,
here is the log from the commit of package openSUSE-release-tools for
openSUSE:Factory checked in at 2019-07-23 22:35:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
and /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.4126 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openSUSE-release-tools"
Tue Jul 23 22:35:25 2019 rev:194 rq:717607 version:20190722.14459251
Changes:
--------
---
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
2019-07-22 12:21:34.543645707 +0200
+++
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.4126/openSUSE-release-tools.changes
2019-07-23 22:35:28.354994971 +0200
@@ -1,0 +2,12 @@
+Mon Jul 22 14:35:58 UTC 2019 - [email protected]
+
+- Update to version 20190722.14459251:
+ * Fix 15.1 images by introducing them again
+
+-------------------------------------------------------------------
+Mon Jul 22 07:51:49 UTC 2019 - [email protected]
+
+- Update to version 20190722.35dabf52:
+ * rabbit-openqa: Catch exceptions as PUT to openqa might result in 404
+
+-------------------------------------------------------------------
Old:
----
openSUSE-release-tools-20190719.297ecd02.obscpio
New:
----
openSUSE-release-tools-20190722.14459251.obscpio
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.LvaTVk/_old 2019-07-23 22:35:29.038994830 +0200
+++ /var/tmp/diff_new_pack.LvaTVk/_new 2019-07-23 22:35:29.050994827 +0200
@@ -20,7 +20,7 @@
%define source_dir openSUSE-release-tools
%define announcer_filename factory-package-news
Name: openSUSE-release-tools
-Version: 20190719.297ecd02
+Version: 20190722.14459251
Release: 0
Summary: Tools to aid in staging and release work for openSUSE/SUSE
License: GPL-2.0-or-later AND MIT
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.LvaTVk/_old 2019-07-23 22:35:29.150994807 +0200
+++ /var/tmp/diff_new_pack.LvaTVk/_new 2019-07-23 22:35:29.150994807 +0200
@@ -1,6 +1,6 @@
<servicedata>
<service name="tar_scm">
<param
name="url">https://github.com/openSUSE/openSUSE-release-tools.git</param>
- <param
name="changesrevision">297ecd02c8182f693b30a585106f86f104758205</param>
+ <param
name="changesrevision">cf5776c304fcc841bdc667061f2bd52f0fc0c7ac</param>
</service>
</servicedata>
++++++ openSUSE-release-tools-20190719.297ecd02.obscpio ->
openSUSE-release-tools-20190722.14459251.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/openSUSE-release-tools-20190719.297ecd02/gocd/rabbit-openqa.py
new/openSUSE-release-tools-20190722.14459251/gocd/rabbit-openqa.py
--- old/openSUSE-release-tools-20190719.297ecd02/gocd/rabbit-openqa.py
2019-07-19 17:14:31.000000000 +0200
+++ new/openSUSE-release-tools-20190722.14459251/gocd/rabbit-openqa.py
2019-07-22 16:32:48.000000000 +0200
@@ -14,7 +14,7 @@
from osclib.stagingapi import StagingAPI
from lxml import etree as ET
from openqa_client.client import OpenQA_Client
-from openqa_client.exceptions import ConnectionError
+from openqa_client.exceptions import ConnectionError, RequestError
from urllib.error import HTTPError, URLError
from urllib.parse import quote_plus
@@ -209,7 +209,10 @@
# notify openQA to sync the projects - the plugin will check itself it
# the project is to be synced. For now we notify about every 'images'
repo
if payload['repo'] == 'images':
- self.openqa.openqa_request('PUT', 'obs_rsync',
str(payload['project']), 'runs')
+ try:
+ self.openqa.openqa_request('PUT',
'obs_rsync/{}/runs'.format(payload['project']), retries=0)
+ except RequestError as e:
+ self.logger.info("Got exception on syncing repository:
{}".format(e))
def on_openqa_job(self, iso):
self.logger.debug('openqa_job_change %s', iso)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/openSUSE-release-tools-20190719.297ecd02/gocd/totestmanager.gocd.yaml
new/openSUSE-release-tools-20190722.14459251/gocd/totestmanager.gocd.yaml
--- old/openSUSE-release-tools-20190719.297ecd02/gocd/totestmanager.gocd.yaml
2019-07-19 17:14:31.000000000 +0200
+++ new/openSUSE-release-tools-20190722.14459251/gocd/totestmanager.gocd.yaml
2019-07-22 16:32:48.000000000 +0200
@@ -105,6 +105,48 @@
- script: |-
install -D /home/go/config/openqa-client.conf
/home/go/.config/openqa/client.conf
scripts/totest-manager.py -A https://api.opensuse.org --debug run
openSUSE:Leap:15.0:Images
+ TTM.Leap_15.1_Images:
+ group: openSUSE.Checkers
+ lock_behavior: unlockWhenFinished
+ environment_variables:
+ OSC_CONFIG: /home/go/config/oscrc-totest-manager
+ materials:
+ script:
+ git: https://github.com/openSUSE/openSUSE-release-tools.git
+ destination: scripts
+ timer:
+ spec: 0 */15 * ? * *
+ only_on_changes: false
+ stages:
+ - Run:
+ approval: manual
+ resources:
+ - staging-bot
+ tasks:
+ - script: |-
+ install -D /home/go/config/openqa-client.conf
/home/go/.config/openqa/client.conf
+ scripts/totest-manager.py -A https://api.opensuse.org --debug run
openSUSE:Leap:15.1:Images
+ TTM.Leap_15.1_ARM_Images:
+ group: openSUSE.Checkers
+ lock_behavior: unlockWhenFinished
+ environment_variables:
+ OSC_CONFIG: /home/go/config/oscrc-totest-manager
+ materials:
+ script:
+ git: https://github.com/openSUSE/openSUSE-release-tools.git
+ destination: scripts
+ timer:
+ spec: 0 */15 * ? * *
+ only_on_changes: false
+ stages:
+ - Run:
+ approval: manual
+ resources:
+ - staging-bot
+ tasks:
+ - script: |-
+ install -D /home/go/config/openqa-client.conf
/home/go/.config/openqa/client.conf
+ scripts/totest-manager.py -A https://api.opensuse.org --debug run
openSUSE:Leap:15.1:ARM:Images
TTM.Leap_15.2_Images:
group: openSUSE.Checkers
lock_behavior: unlockWhenFinished
++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.LvaTVk/_old 2019-07-23 22:35:30.482994532 +0200
+++ /var/tmp/diff_new_pack.LvaTVk/_new 2019-07-23 22:35:30.482994532 +0200
@@ -1,5 +1,5 @@
name: openSUSE-release-tools
-version: 20190719.297ecd02
-mtime: 1563549271
-commit: 297ecd02c8182f693b30a585106f86f104758205
+version: 20190722.14459251
+mtime: 1563805968
+commit: 14459251b8c1939be99b75705829cab759fbc230