2024-05-20 09:51:53 +02:00
---
format_version : 3
pipelines :
2024-08-26 14:43:14 +02:00
SUSE.SLFO.Main.Staging.Weekly.Freeze :
environment_variables :
SLFO_PROJECT : SUSE:SLFO:Main
SLFO_RING_1_PROJECT : SUSE:SLFO:Main:Staging:Rings:1-MinimalX
STAGING_API : https://api.suse.de
2024-09-04 17:11:32 +02:00
OSC_CONFIG : /home/go/config/oscrc-staging-bot
2024-08-26 14:43:14 +02:00
group : SLFO.Stagings
lock_behavior : unlockWhenFinished
timer :
2024-08-30 10:09:47 +02:00
spec : "0 0 0-23 ? * SUN"
2024-08-26 14:43:14 +02:00
materials :
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
stages :
- Check.Ring.1.Finished :
timeout : 50
resources :
- staging-bot
tasks :
- script : |-
2024-09-04 15:45:24 +02:00
set -eu
status="$(osc -A $STAGING_API api /build/$SLFO_RING_1_PROJECT/standard/x86_64?view=status | grep 'code=' | sed -E 's/^.*code="(.*)".*$/\1/')"
echo $SLFO_RING_1_PROJECT status : "${status}"
2024-09-06 15:47:26 +02:00
if printf '%s' "${status}" | grep -q finished; then
2024-09-04 15:45:24 +02:00
exit 0
else
exit 1
fi
2024-08-26 14:43:14 +02:00
- Freeze.stagings :
2024-08-30 10:09:47 +02:00
## 6 hours (at most 30 minutes per staging)
2024-08-26 14:43:14 +02:00
timeout : 360
resources :
- staging-bot
tasks :
- script : |-
set -eu
2024-09-16 12:08:00 +02:00
export PYTHONPATH=$PWD
2024-09-11 13:18:42 +02:00
## Setup osc staging plugin
tempdir=$(mktemp -d)
mkdir -p $tempdir/.osc-plugins
ln -s $PWD/osc-staging.py $tempdir/.osc-plugins
ln -s $PWD/osclib $tempdir/.osc-plugins
export HOME=$tempdir
2024-08-26 14:43:14 +02:00
for letter in A B C D E F G H S V Y ; do
2024-08-30 10:09:47 +02:00
## if the staging was frozen today, skip it
2024-08-26 14:43:14 +02:00
if ! osc -A $STAGING_API meta attribute "${SLFO_PROJECT}:Staging:${letter}" --attribute OSRT:FreezeTime | grep $(date +%Y-%m-%d); then
osc -A $STAGING_API staging freeze -p $SLFO_PROJECT $letter
else
2024-09-11 13:18:42 +02:00
echo "${SLFO_PROJECT}:Staging:${letter}" was frozen today, skipping it...
2024-08-26 14:43:14 +02:00
fi
done
2024-09-11 13:18:42 +02:00
## Tear down osc staging plugin
rm -rf $tempdir
2024-05-20 09:51:53 +02:00
SUSE.SLFO.Main.Staging.A :
environment_variables :
STAGING_PROJECT : SUSE:SLFO:Main:Staging:A
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:Main:Staging:A_-_standard.yaml
scripts :
auto_update : true
2024-06-11 15:44:39 +02:00
git : https://github.com/openSUSE/openSUSE-release-tools.git
2024-05-20 09:51:53 +02:00
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p SUSE:SLFO:Main -s $STAGING_PROJECT
- Update.000product :
resources :
- repo-checker
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
2024-05-30 10:05:37 +02:00
if ../pkglistgen.py --debug -A $STAGING_API update_and_solve --engine product_composer --staging $STAGING_PROJECT --force; then
2024-05-20 09:51:53 +02:00
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s success
else
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s failure
exit 1
fi
2024-06-11 10:57:50 +02:00
- Build.product :
2024-06-17 16:24:01 +02:00
timeout : 180
2024-06-11 10:57:50 +02:00
resources :
- staging-bot
tasks :
- script : |-
2024-11-12 15:38:25 +01:00
minutes=1
2024-06-11 10:57:50 +02:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=product&flag=build"
export PYTHONPATH=$PWD/scripts
2024-11-12 15:38:25 +01:00
## Let the scheduler warm up first
sleep 60
while osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -E 'statuscount code="(blocked|scheduled|building)"'; do
if [ ${minutes} -gt 180 ]; then
echo "Product is still building after timeout, exiting..." >&2
2024-11-07 14:29:12 +01:00
exit 1
2024-06-17 16:24:01 +02:00
fi
2024-06-11 10:57:50 +02:00
sleep 60
2024-11-07 14:29:12 +01:00
minutes=$(expr $minutes + 1)
2024-06-11 10:57:50 +02:00
done
2024-11-12 15:38:25 +01:00
## Always fail on broken/failed products
if osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -qE 'statuscount code="(broken|failed)"'; then
echo "Some products failed to build, exiting..." >&2
exit 1
fi
2024-06-11 10:57:50 +02:00
2024-05-20 09:51:53 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.Main.Staging.B :
environment_variables :
STAGING_PROJECT : SUSE:SLFO:Main:Staging:B
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:Main:Staging:B_-_standard.yaml
scripts :
auto_update : true
2024-06-11 15:44:39 +02:00
git : https://github.com/openSUSE/openSUSE-release-tools.git
2024-05-20 09:51:53 +02:00
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p SUSE:SLFO:Main -s $STAGING_PROJECT
- Update.000product :
resources :
- repo-checker
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
2024-05-30 10:05:37 +02:00
if ../pkglistgen.py --debug -A $STAGING_API update_and_solve --engine product_composer --staging $STAGING_PROJECT --force; then
2024-05-20 09:51:53 +02:00
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s success
else
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s failure
exit 1
fi
2024-06-11 10:57:50 +02:00
- Build.product :
2024-06-17 16:24:01 +02:00
timeout : 180
2024-06-11 10:57:50 +02:00
resources :
- staging-bot
tasks :
- script : |-
2024-11-12 15:38:25 +01:00
minutes=1
2024-06-11 10:57:50 +02:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=product&flag=build"
export PYTHONPATH=$PWD/scripts
2024-11-12 15:38:25 +01:00
## Let the scheduler warm up first
sleep 60
while osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -E 'statuscount code="(blocked|scheduled|building)"'; do
if [ ${minutes} -gt 180 ]; then
echo "Product is still building after timeout, exiting..." >&2
2024-11-07 14:29:12 +01:00
exit 1
2024-06-17 16:24:01 +02:00
fi
2024-06-11 10:57:50 +02:00
sleep 60
2024-11-07 14:29:12 +01:00
minutes=$(expr $minutes + 1)
2024-06-11 10:57:50 +02:00
done
2024-11-12 15:38:25 +01:00
## Always fail on broken/failed products
if osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -qE 'statuscount code="(broken|failed)"'; then
echo "Some products failed to build, exiting..." >&2
exit 1
fi
2024-06-11 10:57:50 +02:00
2024-05-20 09:51:53 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.Main.Staging.C :
environment_variables :
STAGING_PROJECT : SUSE:SLFO:Main:Staging:C
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:Main:Staging:C_-_standard.yaml
scripts :
auto_update : true
2024-06-11 15:44:39 +02:00
git : https://github.com/openSUSE/openSUSE-release-tools.git
2024-05-20 09:51:53 +02:00
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p SUSE:SLFO:Main -s $STAGING_PROJECT
- Update.000product :
resources :
- repo-checker
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
2024-05-30 10:05:37 +02:00
if ../pkglistgen.py --debug -A $STAGING_API update_and_solve --engine product_composer --staging $STAGING_PROJECT --force; then
2024-05-20 09:51:53 +02:00
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s success
else
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s failure
exit 1
fi
2024-06-11 10:57:50 +02:00
- Build.product :
2024-06-17 16:24:01 +02:00
timeout : 180
2024-06-11 10:57:50 +02:00
resources :
- staging-bot
tasks :
- script : |-
2024-11-12 15:38:25 +01:00
minutes=1
2024-06-11 10:57:50 +02:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=product&flag=build"
export PYTHONPATH=$PWD/scripts
2024-11-12 15:38:25 +01:00
## Let the scheduler warm up first
sleep 60
while osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -E 'statuscount code="(blocked|scheduled|building)"'; do
if [ ${minutes} -gt 180 ]; then
echo "Product is still building after timeout, exiting..." >&2
2024-11-07 14:29:12 +01:00
exit 1
2024-06-17 16:24:01 +02:00
fi
2024-06-11 10:57:50 +02:00
sleep 60
2024-11-07 14:29:12 +01:00
minutes=$(expr $minutes + 1)
2024-06-11 10:57:50 +02:00
done
2024-11-12 15:38:25 +01:00
## Always fail on broken/failed products
if osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -qE 'statuscount code="(broken|failed)"'; then
echo "Some products failed to build, exiting..." >&2
exit 1
fi
2024-06-11 10:57:50 +02:00
2024-05-20 09:51:53 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.Main.Staging.D :
environment_variables :
STAGING_PROJECT : SUSE:SLFO:Main:Staging:D
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:Main:Staging:D_-_standard.yaml
scripts :
auto_update : true
2024-06-11 15:44:39 +02:00
git : https://github.com/openSUSE/openSUSE-release-tools.git
2024-05-20 09:51:53 +02:00
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p SUSE:SLFO:Main -s $STAGING_PROJECT
- Update.000product :
resources :
- repo-checker
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
2024-05-30 10:05:37 +02:00
if ../pkglistgen.py --debug -A $STAGING_API update_and_solve --engine product_composer --staging $STAGING_PROJECT --force; then
2024-05-20 09:51:53 +02:00
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s success
else
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s failure
exit 1
fi
2024-06-11 10:57:50 +02:00
- Build.product :
2024-06-17 16:24:01 +02:00
timeout : 180
2024-06-11 10:57:50 +02:00
resources :
- staging-bot
tasks :
- script : |-
2024-11-12 15:38:25 +01:00
minutes=1
2024-06-11 10:57:50 +02:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=product&flag=build"
export PYTHONPATH=$PWD/scripts
2024-11-12 15:38:25 +01:00
## Let the scheduler warm up first
sleep 60
while osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -E 'statuscount code="(blocked|scheduled|building)"'; do
if [ ${minutes} -gt 180 ]; then
echo "Product is still building after timeout, exiting..." >&2
2024-11-07 14:29:12 +01:00
exit 1
2024-06-17 16:24:01 +02:00
fi
2024-06-11 10:57:50 +02:00
sleep 60
2024-11-07 14:29:12 +01:00
minutes=$(expr $minutes + 1)
2024-06-11 10:57:50 +02:00
done
2024-11-12 15:38:25 +01:00
## Always fail on broken/failed products
if osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -qE 'statuscount code="(broken|failed)"'; then
echo "Some products failed to build, exiting..." >&2
exit 1
fi
2024-06-11 10:57:50 +02:00
2024-05-20 09:51:53 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.Main.Staging.E :
environment_variables :
STAGING_PROJECT : SUSE:SLFO:Main:Staging:E
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:Main:Staging:E_-_standard.yaml
scripts :
auto_update : true
2024-06-11 15:44:39 +02:00
git : https://github.com/openSUSE/openSUSE-release-tools.git
2024-05-20 09:51:53 +02:00
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p SUSE:SLFO:Main -s $STAGING_PROJECT
- Update.000product :
resources :
- repo-checker
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
2024-05-30 10:05:37 +02:00
if ../pkglistgen.py --debug -A $STAGING_API update_and_solve --engine product_composer --staging $STAGING_PROJECT --force; then
2024-05-20 09:51:53 +02:00
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s success
else
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s failure
exit 1
fi
2024-06-11 10:57:50 +02:00
- Build.product :
2024-06-17 16:24:01 +02:00
timeout : 180
2024-06-11 10:57:50 +02:00
resources :
- staging-bot
tasks :
- script : |-
2024-11-12 15:38:25 +01:00
minutes=1
2024-06-11 10:57:50 +02:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=product&flag=build"
export PYTHONPATH=$PWD/scripts
2024-11-12 15:38:25 +01:00
## Let the scheduler warm up first
sleep 60
while osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -E 'statuscount code="(blocked|scheduled|building)"'; do
if [ ${minutes} -gt 180 ]; then
echo "Product is still building after timeout, exiting..." >&2
2024-11-07 14:29:12 +01:00
exit 1
2024-06-17 16:24:01 +02:00
fi
2024-06-11 10:57:50 +02:00
sleep 60
2024-11-07 14:29:12 +01:00
minutes=$(expr $minutes + 1)
2024-06-11 10:57:50 +02:00
done
2024-11-12 15:38:25 +01:00
## Always fail on broken/failed products
if osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -qE 'statuscount code="(broken|failed)"'; then
echo "Some products failed to build, exiting..." >&2
exit 1
fi
2024-06-11 10:57:50 +02:00
2024-05-20 09:51:53 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.Main.Staging.F :
environment_variables :
STAGING_PROJECT : SUSE:SLFO:Main:Staging:F
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:Main:Staging:F_-_standard.yaml
scripts :
auto_update : true
2024-06-11 15:44:39 +02:00
git : https://github.com/openSUSE/openSUSE-release-tools.git
2024-05-20 09:51:53 +02:00
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p SUSE:SLFO:Main -s $STAGING_PROJECT
- Update.000product :
resources :
- repo-checker
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
2024-05-30 10:05:37 +02:00
if ../pkglistgen.py --debug -A $STAGING_API update_and_solve --engine product_composer --staging $STAGING_PROJECT --force; then
2024-05-20 09:51:53 +02:00
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s success
else
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s failure
exit 1
fi
2024-06-11 10:57:50 +02:00
- Build.product :
2024-06-17 16:24:01 +02:00
timeout : 180
2024-06-11 10:57:50 +02:00
resources :
- staging-bot
tasks :
- script : |-
2024-11-12 15:38:25 +01:00
minutes=1
2024-06-11 10:57:50 +02:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=product&flag=build"
export PYTHONPATH=$PWD/scripts
2024-11-12 15:38:25 +01:00
## Let the scheduler warm up first
sleep 60
while osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -E 'statuscount code="(blocked|scheduled|building)"'; do
if [ ${minutes} -gt 180 ]; then
echo "Product is still building after timeout, exiting..." >&2
2024-11-07 14:29:12 +01:00
exit 1
2024-06-17 16:24:01 +02:00
fi
2024-06-11 10:57:50 +02:00
sleep 60
2024-11-07 14:29:12 +01:00
minutes=$(expr $minutes + 1)
2024-06-11 10:57:50 +02:00
done
2024-11-12 15:38:25 +01:00
## Always fail on broken/failed products
if osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -qE 'statuscount code="(broken|failed)"'; then
echo "Some products failed to build, exiting..." >&2
exit 1
fi
2024-06-11 10:57:50 +02:00
2024-05-20 09:51:53 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.Main.Staging.G :
environment_variables :
STAGING_PROJECT : SUSE:SLFO:Main:Staging:G
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:Main:Staging:G_-_standard.yaml
scripts :
auto_update : true
2024-06-11 15:44:39 +02:00
git : https://github.com/openSUSE/openSUSE-release-tools.git
2024-05-20 09:51:53 +02:00
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p SUSE:SLFO:Main -s $STAGING_PROJECT
- Update.000product :
resources :
- repo-checker
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
2024-05-30 10:05:37 +02:00
if ../pkglistgen.py --debug -A $STAGING_API update_and_solve --engine product_composer --staging $STAGING_PROJECT --force; then
2024-05-20 09:51:53 +02:00
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s success
else
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s failure
exit 1
fi
2024-06-11 10:57:50 +02:00
- Build.product :
2024-06-17 16:24:01 +02:00
timeout : 180
2024-06-11 10:57:50 +02:00
resources :
- staging-bot
tasks :
- script : |-
2024-11-12 15:38:25 +01:00
minutes=1
2024-06-11 10:57:50 +02:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=product&flag=build"
export PYTHONPATH=$PWD/scripts
2024-11-12 15:38:25 +01:00
## Let the scheduler warm up first
sleep 60
while osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -E 'statuscount code="(blocked|scheduled|building)"'; do
if [ ${minutes} -gt 180 ]; then
echo "Product is still building after timeout, exiting..." >&2
2024-11-07 14:29:12 +01:00
exit 1
2024-06-17 16:24:01 +02:00
fi
2024-06-11 10:57:50 +02:00
sleep 60
2024-11-07 14:29:12 +01:00
minutes=$(expr $minutes + 1)
2024-06-11 10:57:50 +02:00
done
2024-11-12 15:38:25 +01:00
## Always fail on broken/failed products
if osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -qE 'statuscount code="(broken|failed)"'; then
echo "Some products failed to build, exiting..." >&2
exit 1
fi
2024-06-11 10:57:50 +02:00
2024-05-20 09:51:53 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.Main.Staging.H :
environment_variables :
STAGING_PROJECT : SUSE:SLFO:Main:Staging:H
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:Main:Staging:H_-_standard.yaml
scripts :
auto_update : true
2024-06-11 15:44:39 +02:00
git : https://github.com/openSUSE/openSUSE-release-tools.git
2024-05-20 09:51:53 +02:00
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p SUSE:SLFO:Main -s $STAGING_PROJECT
- Update.000product :
resources :
- repo-checker
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
2024-05-30 10:05:37 +02:00
if ../pkglistgen.py --debug -A $STAGING_API update_and_solve --engine product_composer --staging $STAGING_PROJECT --force; then
2024-05-20 09:51:53 +02:00
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s success
else
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s failure
exit 1
fi
2024-06-11 10:57:50 +02:00
- Build.product :
2024-06-17 16:24:01 +02:00
timeout : 180
2024-06-11 10:57:50 +02:00
resources :
- staging-bot
tasks :
- script : |-
2024-11-12 15:38:25 +01:00
minutes=1
2024-06-11 10:57:50 +02:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=product&flag=build"
export PYTHONPATH=$PWD/scripts
2024-11-12 15:38:25 +01:00
## Let the scheduler warm up first
sleep 60
while osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -E 'statuscount code="(blocked|scheduled|building)"'; do
if [ ${minutes} -gt 180 ]; then
echo "Product is still building after timeout, exiting..." >&2
2024-11-07 14:29:12 +01:00
exit 1
2024-06-17 16:24:01 +02:00
fi
2024-06-11 10:57:50 +02:00
sleep 60
2024-11-07 14:29:12 +01:00
minutes=$(expr $minutes + 1)
2024-06-11 10:57:50 +02:00
done
2024-11-12 15:38:25 +01:00
## Always fail on broken/failed products
if osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -qE 'statuscount code="(broken|failed)"'; then
echo "Some products failed to build, exiting..." >&2
exit 1
fi
2024-06-11 10:57:50 +02:00
2024-05-20 09:51:53 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.Main.Staging.S :
environment_variables :
STAGING_PROJECT : SUSE:SLFO:Main:Staging:S
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:Main:Staging:S_-_standard.yaml
scripts :
auto_update : true
2024-06-11 15:44:39 +02:00
git : https://github.com/openSUSE/openSUSE-release-tools.git
2024-05-20 09:51:53 +02:00
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p SUSE:SLFO:Main -s $STAGING_PROJECT
- Update.000product :
resources :
- repo-checker
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
2024-05-30 10:05:37 +02:00
if ../pkglistgen.py --debug -A $STAGING_API update_and_solve --engine product_composer --staging $STAGING_PROJECT --force; then
2024-05-20 09:51:53 +02:00
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s success
else
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s failure
exit 1
fi
2024-06-11 10:57:50 +02:00
- Build.product :
2024-06-17 16:24:01 +02:00
timeout : 180
2024-06-11 10:57:50 +02:00
resources :
- staging-bot
tasks :
- script : |-
2024-11-12 15:38:25 +01:00
minutes=1
2024-06-11 10:57:50 +02:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=product&flag=build"
export PYTHONPATH=$PWD/scripts
2024-11-12 15:38:25 +01:00
## Let the scheduler warm up first
sleep 60
while osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -E 'statuscount code="(blocked|scheduled|building)"'; do
if [ ${minutes} -gt 180 ]; then
echo "Product is still building after timeout, exiting..." >&2
2024-11-07 14:29:12 +01:00
exit 1
2024-06-17 16:24:01 +02:00
fi
2024-06-11 10:57:50 +02:00
sleep 60
2024-11-07 14:29:12 +01:00
minutes=$(expr $minutes + 1)
2024-06-11 10:57:50 +02:00
done
2024-11-12 15:38:25 +01:00
## Always fail on broken/failed products
if osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -qE 'statuscount code="(broken|failed)"'; then
echo "Some products failed to build, exiting..." >&2
exit 1
fi
2024-06-11 10:57:50 +02:00
2024-05-20 09:51:53 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.Main.Staging.V :
environment_variables :
STAGING_PROJECT : SUSE:SLFO:Main:Staging:V
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:Main:Staging:V_-_standard.yaml
scripts :
auto_update : true
2024-06-11 15:44:39 +02:00
git : https://github.com/openSUSE/openSUSE-release-tools.git
2024-05-20 09:51:53 +02:00
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p SUSE:SLFO:Main -s $STAGING_PROJECT
- Update.000product :
resources :
- repo-checker
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
2024-05-30 10:05:37 +02:00
if ../pkglistgen.py --debug -A $STAGING_API update_and_solve --engine product_composer --staging $STAGING_PROJECT --force; then
2024-05-20 09:51:53 +02:00
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s success
else
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s failure
exit 1
fi
2024-06-11 10:57:50 +02:00
- Build.product :
2024-06-17 16:24:01 +02:00
timeout : 180
2024-06-11 10:57:50 +02:00
resources :
- staging-bot
tasks :
- script : |-
2024-11-12 15:38:25 +01:00
minutes=1
2024-06-11 10:57:50 +02:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=product&flag=build"
export PYTHONPATH=$PWD/scripts
2024-11-12 15:38:25 +01:00
## Let the scheduler warm up first
sleep 60
while osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -E 'statuscount code="(blocked|scheduled|building)"'; do
if [ ${minutes} -gt 180 ]; then
echo "Product is still building after timeout, exiting..." >&2
2024-11-07 14:29:12 +01:00
exit 1
2024-06-17 16:24:01 +02:00
fi
2024-06-11 10:57:50 +02:00
sleep 60
2024-11-07 14:29:12 +01:00
minutes=$(expr $minutes + 1)
2024-06-11 10:57:50 +02:00
done
2024-11-12 15:38:25 +01:00
## Always fail on broken/failed products
if osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -qE 'statuscount code="(broken|failed)"'; then
echo "Some products failed to build, exiting..." >&2
exit 1
fi
2024-06-11 10:57:50 +02:00
2024-05-20 09:51:53 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.Main.Staging.Y :
environment_variables :
STAGING_PROJECT : SUSE:SLFO:Main:Staging:Y
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:Main:Staging:Y_-_standard.yaml
scripts :
auto_update : true
2024-06-11 15:44:39 +02:00
git : https://github.com/openSUSE/openSUSE-release-tools.git
2024-05-20 09:51:53 +02:00
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p SUSE:SLFO:Main -s $STAGING_PROJECT
- Update.000product :
resources :
- repo-checker
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
2024-05-30 10:05:37 +02:00
if ../pkglistgen.py --debug -A $STAGING_API update_and_solve --engine product_composer --staging $STAGING_PROJECT --force; then
2024-05-20 09:51:53 +02:00
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s success
else
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s failure
exit 1
fi
2024-09-16 15:26:25 +02:00
- Build.product :
timeout : 180
resources :
- staging-bot
tasks :
- script : |-
2024-11-12 15:38:25 +01:00
minutes=1
2024-09-16 15:26:25 +02:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=product&flag=build"
export PYTHONPATH=$PWD/scripts
2024-11-12 15:38:25 +01:00
## Let the scheduler warm up first
sleep 60
while osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -E 'statuscount code="(blocked|scheduled|building)"'; do
if [ ${minutes} -gt 180 ]; then
echo "Product is still building after timeout, exiting..." >&2
2024-11-07 14:29:12 +01:00
exit 1
2024-09-16 15:26:25 +02:00
fi
sleep 60
2024-11-07 14:29:12 +01:00
minutes=$(expr $minutes + 1)
2024-09-16 15:26:25 +02:00
done
2024-11-12 15:38:25 +01:00
## Always fail on broken/failed products
if osc -A $STAGING_API api -X GET "/build/$STAGING_PROJECT/_result?view=summary&repository=product&arch=local" | grep -qE 'statuscount code="(broken|failed)"'; then
echo "Some products failed to build, exiting..." >&2
exit 1
fi
2024-09-16 15:26:25 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.A :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:A
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:A_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.B :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:B
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:B_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.C :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:C
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:C_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.D :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:D
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:D_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.E :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:E
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:E_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.F :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:F
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:F_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
2025-01-08 18:27:01 -03:00
- Enable.images.repo :
2024-09-16 15:26:25 +02:00
resources :
2025-01-08 18:27:01 -03:00
- staging-bot
2024-09-16 15:26:25 +02:00
tasks :
- script : |-
2025-01-08 18:27:01 -03:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
2024-09-16 15:26:25 +02:00
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.G :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:G
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:G_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.H :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:H
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:H_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
2025-01-08 18:27:01 -03:00
SUSE.SLFO.1.1.Staging.I :
2024-09-16 15:26:25 +02:00
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
2025-01-08 18:27:01 -03:00
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:I
2024-09-16 15:26:25 +02:00
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
2025-01-08 18:27:01 -03:00
- SUSE:SLFO:1.1:Staging:I_-_standard.yaml
2024-09-16 15:26:25 +02:00
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
2025-01-08 18:27:01 -03:00
SUSE.SLFO.1.1.Staging.J :
2024-09-16 15:26:25 +02:00
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
2025-01-08 18:27:01 -03:00
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:J
2024-09-16 15:26:25 +02:00
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
2025-01-08 18:27:01 -03:00
- SUSE:SLFO:1.1:Staging:J_-_standard.yaml
2024-09-16 15:26:25 +02:00
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
2025-01-08 18:27:01 -03:00
- Enable.images.repo :
2024-09-16 15:26:25 +02:00
resources :
- staging-bot
tasks :
- script : |-
2025-01-08 18:27:01 -03:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
2024-09-16 15:26:25 +02:00
export PYTHONPATH=$PWD/scripts
2025-01-08 18:27:01 -03:00
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
2024-09-16 15:26:25 +02:00
sleep 60
done
2025-01-08 18:27:01 -03:00
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.K :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:K
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:K_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
2024-09-16 15:26:25 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
2025-01-08 18:27:01 -03:00
SUSE.SLFO.1.1.Staging.L :
2024-09-16 15:26:25 +02:00
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
2025-01-08 18:27:01 -03:00
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:L
2024-09-16 15:26:25 +02:00
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
2025-01-08 18:27:01 -03:00
- SUSE:SLFO:1.1:Staging:L_-_standard.yaml
2024-09-16 15:26:25 +02:00
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
2025-01-08 18:27:01 -03:00
- Enable.images.repo :
2024-09-16 15:26:25 +02:00
resources :
2025-01-08 18:27:01 -03:00
- staging-bot
2024-09-16 15:26:25 +02:00
tasks :
- script : |-
2025-01-08 18:27:01 -03:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
2024-09-16 15:26:25 +02:00
export PYTHONPATH=$PWD/scripts
2025-01-08 18:27:01 -03:00
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
2024-09-16 15:26:25 +02:00
2025-01-08 18:27:01 -03:00
SUSE.SLFO.1.1.Staging.M :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:M
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:M_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.N :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:N
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:N_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.O :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:O
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:O_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.P :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:P
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:P_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.Q :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:Q
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:Q_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.R :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:R
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:R_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.S :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:S
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:S_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.T :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:T
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:T_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.U :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:U
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:U_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.V :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:V
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:V_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
2024-09-16 15:26:25 +02:00
2025-01-08 18:27:01 -03:00
- Enable.images.repo :
2024-06-11 10:57:50 +02:00
resources :
- staging-bot
tasks :
- script : |-
2025-01-08 18:27:01 -03:00
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
2024-06-11 10:57:50 +02:00
export PYTHONPATH=$PWD/scripts
2025-01-08 18:27:01 -03:00
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
2024-06-11 10:57:50 +02:00
sleep 60
done
2025-01-08 18:27:01 -03:00
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.W :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:W
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:W_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.X :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:X
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:X_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.Y :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:Y
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:Y_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success
SUSE.SLFO.1.1.Staging.Z :
environment_variables :
SLFO_1_1_PROJECT : SUSE:SLFO:1.1
STAGING_PROJECT : SUSE:SLFO:1.1:Staging:Z
STAGING_API : https://api.suse.de
OSC_CONFIG : /home/go/config/oscrc-staging-bot
group : SLFO.1.1.Stagings
lock_behavior : unlockWhenFinished
materials :
stagings :
git : git://botmaster.suse.de/suse-repos.git
auto_update : true
destination : repos
whitelist :
- SUSE:SLFO:1.1:Staging:Z_-_standard.yaml
scripts :
auto_update : true
git : https://github.com/openSUSE/openSUSE-release-tools.git
whitelist :
- DO_NOT_TRIGGER
destination : scripts
stages :
- Checks :
jobs :
Check.Build.Succeeds :
resources :
- staging-bot
tasks :
- script : |-
export PYTHONPATH=$PWD/scripts
cd scripts/gocd
./report-status.py -A $STAGING_API -p $STAGING_PROJECT -n packagelists -r standard -s pending
./verify-repo-built-successful.py -A $STAGING_API -p $STAGING_PROJECT -r standard
Repo.Checker :
environment_variables :
OSC_CONFIG : /home/go/config/oscrc-staging-bot
resources :
- repo-checker
tasks :
- script : |-
./scripts/staging-installcheck.py -A $STAGING_API -p $SLFO_1_1_PROJECT -s $STAGING_PROJECT
2024-06-11 10:57:50 +02:00
2024-05-20 09:51:53 +02:00
- Enable.images.repo :
resources :
- staging-bot
tasks :
- script : |-
osc -A $STAGING_API api -X POST "/source/$STAGING_PROJECT?cmd=remove_flag&repository=images&flag=build"
export PYTHONPATH=$PWD/scripts
while osc -A $STAGING_API api "/build/$STAGING_PROJECT/_result?view=summary&repository=images" | grep 'dirty=.true.'; do
sleep 60
done
./scripts/gocd/report-status.py -A $STAGING_API -p $STAGING_PROJECT -n images:enabled -r standard -s success