Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2020-10-14 15:41:04
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and      /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.3486 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openSUSE-release-tools"

Wed Oct 14 15:41:04 2020 rev:297 rq:841754 version:20201007.ccac00af

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
    2020-09-30 19:55:17.564833057 +0200
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new.3486/openSUSE-release-tools.changes
  2020-10-14 15:41:23.962408649 +0200
@@ -1,0 +2,24 @@
+Wed Oct 07 11:06:27 UTC 2020 - opensuse-releaset...@opensuse.org
+
+- Update to version 20201007.ccac00af:
+  * Fix MQ timeouts in rabbit-repoid
+
+-------------------------------------------------------------------
+Wed Oct 07 06:15:05 UTC 2020 - opensuse-releaset...@opensuse.org
+
+- Update to version 20201007.706b6713:
+  * Do not try to push empty changes in rabbit-repoid
+
+-------------------------------------------------------------------
+Wed Oct 07 05:22:37 UTC 2020 - opensuse-releaset...@opensuse.org
+
+- Update to version 20201007.c336e60c:
+  * Check git errors in rabbit-repoid
+
+-------------------------------------------------------------------
+Wed Sep 30 12:52:46 UTC 2020 - opensuse-releaset...@opensuse.org
+
+- Update to version 20200930.488b0fc7:
+  * gocd: Run ttm for openSUSE:Jump:15.2:Images
+
+-------------------------------------------------------------------

Old:
----
  openSUSE-release-tools-20200923.c33e6a9e.obscpio

New:
----
  openSUSE-release-tools-20201007.ccac00af.obscpio

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ openSUSE-release-tools.spec ++++++
--- /var/tmp/diff_new_pack.1B750v/_old  2020-10-14 15:41:28.434410210 +0200
+++ /var/tmp/diff_new_pack.1B750v/_new  2020-10-14 15:41:28.438410212 +0200
@@ -20,7 +20,7 @@
 %define source_dir openSUSE-release-tools
 %define announcer_filename factory-package-news
 Name:           openSUSE-release-tools
-Version:        20200923.c33e6a9e
+Version:        20201007.ccac00af
 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.1B750v/_old  2020-10-14 15:41:28.510410237 +0200
+++ /var/tmp/diff_new_pack.1B750v/_new  2020-10-14 15:41:28.510410237 +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">c33e6a9e9fac56e8b318b1b805439723cb1b017e</param>
+    <param 
name="changesrevision">9e9479d6b0d9d86af54f883d16a0e35fd74fc641</param>
   </service>
 </servicedata>

++++++ openSUSE-release-tools-20200923.c33e6a9e.obscpio -> 
openSUSE-release-tools-20201007.ccac00af.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20200923.c33e6a9e/gocd/rabbit-repoid.py 
new/openSUSE-release-tools-20201007.ccac00af/gocd/rabbit-repoid.py
--- old/openSUSE-release-tools-20200923.c33e6a9e/gocd/rabbit-repoid.py  
2020-09-23 10:33:51.000000000 +0200
+++ new/openSUSE-release-tools-20201007.ccac00af/gocd/rabbit-repoid.py  
2020-10-07 13:04:45.000000000 +0200
@@ -7,6 +7,7 @@
 import logging
 import os.path
 import time
+import subprocess
 
 import osc
 from osc.core import http_GET, makeurl
@@ -31,8 +32,8 @@
         return super(Listener, self).interval()
 
     def still_alive(self):
-        self.check_some_repos()
         super(Listener, self).still_alive()
+        self.check_some_repos()
 
     def routing_keys(self):
         return [self.amqp_prefix + '.obs.repo.build_finished']
@@ -90,9 +91,8 @@
                 return
 
     def push_git(self, message):
-        os.system('git add . ')
-        os.system('git commit -m "{}" > /dev/null'.format(message))
-        os.system('git push > /dev/null')
+        cmd = 'git add . && git diff --exit-code --quiet HEAD || ( git commit 
-m "{}" && git push ) > /dev/null'
+        subprocess.run(cmd.format(message), shell=True, check=True)
 
     def update_repo(self, project, repository):
         ids = self.check_all_archs(project, repository)
@@ -106,7 +106,6 @@
 
     def on_message(self, unused_channel, method, properties, body):
         self.logger.debug("on_message")
-        self.check_some_repos()
         self.acknowledge_message(method.delivery_tag)
         try:
             body = json.loads(body)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20200923.c33e6a9e/gocd/totestmanager.gocd.yaml 
new/openSUSE-release-tools-20201007.ccac00af/gocd/totestmanager.gocd.yaml
--- old/openSUSE-release-tools-20200923.c33e6a9e/gocd/totestmanager.gocd.yaml   
2020-09-23 10:33:51.000000000 +0200
+++ new/openSUSE-release-tools-20201007.ccac00af/gocd/totestmanager.gocd.yaml   
2020-10-07 13:04:45.000000000 +0200
@@ -252,3 +252,24 @@
         - 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:Jump:15.2
+  TTM.Jump_15.2_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:Jump:15.2:Images
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20200923.c33e6a9e/gocd/totestmanager.gocd.yaml.erb 
new/openSUSE-release-tools-20201007.ccac00af/gocd/totestmanager.gocd.yaml.erb
--- 
old/openSUSE-release-tools-20200923.c33e6a9e/gocd/totestmanager.gocd.yaml.erb   
    2020-09-23 10:33:51.000000000 +0200
+++ 
new/openSUSE-release-tools-20201007.ccac00af/gocd/totestmanager.gocd.yaml.erb   
    2020-10-07 13:04:45.000000000 +0200
@@ -13,6 +13,7 @@
       openSUSE:Leap:15.2:MicroOS
       openSUSE:Leap:15.2:WSL
       openSUSE:Jump:15.2
+      openSUSE:Jump:15.2:Images
   ) -%>
   TTM.<%= project.gsub('openSUSE:', '').gsub(':', '_') %>:
     group: openSUSE.Checkers

++++++ openSUSE-release-tools.obsinfo ++++++
--- /var/tmp/diff_new_pack.1B750v/_old  2020-10-14 15:41:29.226410487 +0200
+++ /var/tmp/diff_new_pack.1B750v/_new  2020-10-14 15:41:29.230410488 +0200
@@ -1,5 +1,5 @@
 name: openSUSE-release-tools
-version: 20200923.c33e6a9e
-mtime: 1600850031
-commit: c33e6a9e9fac56e8b318b1b805439723cb1b017e
+version: 20201007.ccac00af
+mtime: 1602068685
+commit: ccac00af82943e7148d3d9074a09c869d48f3a22
 


Reply via email to