Align the announcer config with the template

This commit is contained in:
Stephan Kulow 2019-12-04 15:45:22 +01:00
parent 0c6f43f448
commit 858e0b881b
2 changed files with 10 additions and 10 deletions

View File

@ -18,7 +18,7 @@ pipelines:
- staging-bot - staging-bot
tasks: tasks:
- script: ./factory-package-news/announcer.py --config config/announcer/openSUSE:Factory.yml --verbose --state-file /home/go/config/announcer.yaml - script: ./factory-package-news/announcer.py --config config/announcer/openSUSE:Factory.yml --verbose --state-file /home/go/config/announcer.yaml
Announcer.FactoryARM: Announcer.Factory_ARM:
group: openSUSE.Checkers group: openSUSE.Checkers
lock_behavior: unlockWhenFinished lock_behavior: unlockWhenFinished
environment_variables: environment_variables:
@ -27,7 +27,7 @@ pipelines:
script: script:
git: https://github.com/openSUSE/openSUSE-release-tools.git git: https://github.com/openSUSE/openSUSE-release-tools.git
timer: timer:
spec: 0 0 * ? * * spec: 0 1 * ? * *
only_on_changes: false only_on_changes: false
stages: stages:
- Run: - Run:
@ -45,7 +45,7 @@ pipelines:
script: script:
git: https://github.com/openSUSE/openSUSE-release-tools.git git: https://github.com/openSUSE/openSUSE-release-tools.git
timer: timer:
spec: 0 1 * ? * * spec: 0 2 * ? * *
only_on_changes: false only_on_changes: false
stages: stages:
- Run: - Run:
@ -54,7 +54,7 @@ pipelines:
- staging-bot - staging-bot
tasks: tasks:
- script: ./factory-package-news/announcer.py --config config/announcer/openSUSE:Kubic.yml --verbose --state-file /home/go/config/announcer.yaml - script: ./factory-package-news/announcer.py --config config/announcer/openSUSE:Kubic.yml --verbose --state-file /home/go/config/announcer.yaml
Announcer.KubicARM: Announcer.Kubic_ARM:
group: openSUSE.Checkers group: openSUSE.Checkers
lock_behavior: unlockWhenFinished lock_behavior: unlockWhenFinished
environment_variables: environment_variables:
@ -63,7 +63,7 @@ pipelines:
script: script:
git: https://github.com/openSUSE/openSUSE-release-tools.git git: https://github.com/openSUSE/openSUSE-release-tools.git
timer: timer:
spec: 0 1 * ? * * spec: 0 3 * ? * *
only_on_changes: false only_on_changes: false
stages: stages:
- Run: - Run:
@ -81,7 +81,7 @@ pipelines:
script: script:
git: https://github.com/openSUSE/openSUSE-release-tools.git git: https://github.com/openSUSE/openSUSE-release-tools.git
timer: timer:
spec: 0 2 * ? * * spec: 0 4 * ? * *
only_on_changes: false only_on_changes: false
stages: stages:
- Run: - Run:
@ -90,7 +90,7 @@ pipelines:
- staging-bot - staging-bot
tasks: tasks:
- script: ./factory-package-news/announcer.py --config config/announcer/openSUSE:MicroOS.yml --verbose --state-file /home/go/config/announcer.yaml - script: ./factory-package-news/announcer.py --config config/announcer/openSUSE:MicroOS.yml --verbose --state-file /home/go/config/announcer.yaml
Announcer.MicroOSARM: Announcer.MicroOS_ARM:
group: openSUSE.Checkers group: openSUSE.Checkers
lock_behavior: unlockWhenFinished lock_behavior: unlockWhenFinished
environment_variables: environment_variables:
@ -99,7 +99,7 @@ pipelines:
script: script:
git: https://github.com/openSUSE/openSUSE-release-tools.git git: https://github.com/openSUSE/openSUSE-release-tools.git
timer: timer:
spec: 0 2 * ? * * spec: 0 5 * ? * *
only_on_changes: false only_on_changes: false
stages: stages:
- Run: - Run:
@ -117,7 +117,7 @@ pipelines:
script: script:
git: https://github.com/openSUSE/openSUSE-release-tools.git git: https://github.com/openSUSE/openSUSE-release-tools.git
timer: timer:
spec: 0 3 * ? * * spec: 0 6 * ? * *
only_on_changes: false only_on_changes: false
stages: stages:
- Run: - Run:

View File

@ -1,6 +1,6 @@
format_version: 3 format_version: 3
pipelines: pipelines:
<% ['Factory', 'Kubic', 'MicroOS', 'Leap:15.2'].each_with_index do |project, index| -%> <% ['Factory', 'Factory:ARM', 'Kubic', 'Kubic:ARM', 'MicroOS', 'MicroOS:ARM', 'Leap:15.2'].each_with_index do |project, index| -%>
<% name = project.gsub(':', '_') -%> <% name = project.gsub(':', '_') -%>
Announcer.<%= name %>: Announcer.<%= name %>:
group: openSUSE.Checkers group: openSUSE.Checkers