Merge pull request #2488 from gyr/15SP1-QR

Add back setup for 15SP1 quarterly updates
This commit is contained in:
Stephan Kulow 2020-10-30 05:32:43 +01:00 committed by GitHub
commit 620b948023
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 6 deletions

View File

@ -281,6 +281,35 @@ pipelines:
- staging-bot
tasks:
- script: ./legal-auto.py -A https://api.suse.de --debug --legaldb http://legaldb.suse.de project $(cat /home/go/config/legal-auto-projects-suse)
SLE15.SP1.QR:
group: SLE.Checkers
lock_behavior: unlockWhenFinished
environment_variables:
OSC_CONFIG: /home/go/config/oscrc-maintenance-installcheck
timer:
spec: 0 0 0 ? * THU
materials:
scripts:
git: https://github.com/openSUSE/openSUSE-release-tools.git
destination: scripts
stages:
- Run:
approval:
type: manual
jobs:
Run:
timeout: 30
resources:
- repo-checker
tasks:
- script: |-
cd scripts
./pkglistgen.py -A https://api.suse.de --debug update_and_solve -p home:maintenance-installcheck:15-SP1:QR -s target --force
osc -A https://api.suse.de co home:maintenance-installcheck:15-SP1:QR 000product
cd home:maintenance-installcheck:15-SP1:QR/000product
sed -e 's,home:maintenance-installcheck:15-SP1:QR,SUSE:SLE-15-SP1:Update:QR,' -i *
osc ci -m 'Fix repoid'
osc sr --yes SUSE:SLE-15-SP1:Update:QR -m 'Update Package List'
SLE15.SP2.QR:
group: SLE.Checkers
lock_behavior: unlockWhenFinished

View File

@ -281,7 +281,8 @@ pipelines:
- staging-bot
tasks:
- script: ./legal-auto.py -A https://api.suse.de --debug --legaldb http://legaldb.suse.de project $(cat /home/go/config/legal-auto-projects-suse)
SLE15.SP2.QR:
<% ['SP1', 'SP2'].each do |servicepack| -%>
SLE15.<%= servicepack %>.QR:
group: SLE.Checkers
lock_behavior: unlockWhenFinished
environment_variables:
@ -304,9 +305,10 @@ pipelines:
tasks:
- script: |-
cd scripts
./pkglistgen.py -A https://api.suse.de --debug update_and_solve -p home:maintenance-installcheck:15-SP2:QR -s target --force
osc -A https://api.suse.de co home:maintenance-installcheck:15-SP2:QR 000product
cd home:maintenance-installcheck:15-SP2:QR/000product
sed -e 's,home:maintenance-installcheck:15-SP2:QR,SUSE:SLE-15-SP2:Update:QR,' -i *
./pkglistgen.py -A https://api.suse.de --debug update_and_solve -p home:maintenance-installcheck:15-<%= servicepack %>:QR -s target --force
osc -A https://api.suse.de co home:maintenance-installcheck:15-<%= servicepack %>:QR 000product
cd home:maintenance-installcheck:15-<%= servicepack %>:QR/000product
sed -e 's,home:maintenance-installcheck:15-<%= servicepack %>:QR,SUSE:SLE-15-<%= servicepack %>:Update:QR,' -i *
osc ci -m 'Fix repoid'
osc sr --yes SUSE:SLE-15-SP2:Update:QR -m 'Update Package List'
osc sr --yes SUSE:SLE-15-<%= servicepack %>:Update:QR -m 'Update Package List'
<% end -%>