more changes needed to get taskotron-stg listening to stg fedmsg and koj
This commit is contained in:
parent
8a5a58e9b3
commit
4431751cfc
4 changed files with 13 additions and 4 deletions
|
@ -13,6 +13,9 @@ deployment_type: stg
|
||||||
# extra_enablerepos: 'infrastructure-testing'
|
# extra_enablerepos: 'infrastructure-testing'
|
||||||
extra_enablerepos: 'infrastructure-testing'
|
extra_enablerepos: 'infrastructure-testing'
|
||||||
|
|
||||||
|
# make sure we're using the stg fedsmg bus
|
||||||
|
fedmsg_env: stg
|
||||||
|
|
||||||
|
|
||||||
############################################################
|
############################################################
|
||||||
# resultsdb details
|
# resultsdb details
|
||||||
|
|
|
@ -13,6 +13,8 @@ robots_path: /var/www/html
|
||||||
# this enables extra repos during dnf install but that's broken right now, remember to re-enable
|
# this enables extra repos during dnf install but that's broken right now, remember to re-enable
|
||||||
extra_enablerepos: 'infrastructure-testing'
|
extra_enablerepos: 'infrastructure-testing'
|
||||||
|
|
||||||
|
# make sure we're using the stg fedsmg bus
|
||||||
|
fedmsg_env: stg
|
||||||
|
|
||||||
############################################################
|
############################################################
|
||||||
# task repo details
|
# task repo details
|
||||||
|
@ -29,6 +31,7 @@ grokmirror_repos:
|
||||||
- { name: fedoraqa/rpmgrill, url: 'https://bitbucket.org/fedoraqa/task-rpmgrill.git'}
|
- { name: fedoraqa/rpmgrill, url: 'https://bitbucket.org/fedoraqa/task-rpmgrill.git'}
|
||||||
- { name: fedoraqa/python-versions, url: 'https://github.com/fedora-python/task-python-versions'}
|
- { name: fedoraqa/python-versions, url: 'https://github.com/fedora-python/task-python-versions'}
|
||||||
- { name: fedoraqa/rpmdeplint, url: 'https://pagure.io/taskotron/task-rpmdeplint.git'}
|
- { name: fedoraqa/rpmdeplint, url: 'https://pagure.io/taskotron/task-rpmdeplint.git'}
|
||||||
|
- { name: fedoraqa/rpmlint-scratch, url: 'https://bitbucket.org/fedoraqa/task-rpmlint-scratch.git'}
|
||||||
grokmirror_default_branch: develop
|
grokmirror_default_branch: develop
|
||||||
|
|
||||||
|
|
||||||
|
@ -45,10 +48,10 @@ resultsdb_external_url: https://taskotron.stg.fedoraproject.org/resultsdb/
|
||||||
resultsdb_fe_endpoint: resultsdb
|
resultsdb_fe_endpoint: resultsdb
|
||||||
|
|
||||||
taskotron_docs_url: https://qa.fedoraproject.org/docs/libtaskotron/latest/
|
taskotron_docs_url: https://qa.fedoraproject.org/docs/libtaskotron/latest/
|
||||||
|
trigger_distgit_repo_url: http://pkgs.stg.fedoraproject.org/pagure/rpms/
|
||||||
trigger_distgit_repo_url: http://src.stg.fedoraproject.org/
|
|
||||||
trigger_critpath_url: https://admin.stg.fedoraproject.org/pkgdb/api/critpath?format=json
|
trigger_critpath_url: https://admin.stg.fedoraproject.org/pkgdb/api/critpath?format=json
|
||||||
|
|
||||||
|
|
||||||
############################################################
|
############################################################
|
||||||
# taskotron details
|
# taskotron details
|
||||||
############################################################
|
############################################################
|
||||||
|
|
|
@ -41,8 +41,8 @@ execdb_external_url: https://taskotron.stg.fedoraproject.org/execdb/
|
||||||
resultsdb_server: http://resultsdb-stg01.qa.fedoraproject.org/resultsdb_api/api/v2.0/
|
resultsdb_server: http://resultsdb-stg01.qa.fedoraproject.org/resultsdb_api/api/v2.0/
|
||||||
# this should be proxy01.stg through /etc/hosts
|
# this should be proxy01.stg through /etc/hosts
|
||||||
bodhi_server: http://bodhi.fedoraproject.org/
|
bodhi_server: http://bodhi.fedoraproject.org/
|
||||||
kojihub_url: https://koji.fedoraproject.org/kojihub
|
kojihub_url: https://koji.stg.fedoraproject.org/kojihub
|
||||||
kojipkg_url: https://kojipkgs.fedoraproject.org/packages
|
kojipkg_url: https://kojipkgs.stg.fedoraproject.org/packages
|
||||||
taskotron_master: https://taskotron.stg.fedoraproject.org/taskmaster/
|
taskotron_master: https://taskotron.stg.fedoraproject.org/taskmaster/
|
||||||
resultsdb_external_url: https://taskotron.stg.fedoraproject.org/resultsdb
|
resultsdb_external_url: https://taskotron.stg.fedoraproject.org/resultsdb
|
||||||
artifacts_base_url: https://taskotron.stg.fedoraproject.org/artifacts
|
artifacts_base_url: https://taskotron.stg.fedoraproject.org/artifacts
|
||||||
|
|
|
@ -31,11 +31,14 @@
|
||||||
{% else %}
|
{% else %}
|
||||||
- {tasks: [depcheck]}
|
- {tasks: [depcheck]}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if deployment_type not in ['dev', 'stg'] %}
|
||||||
|
{# stg bodhi doesn't have the info we need, stg koji doesn't have the builds from prod bodhi #}
|
||||||
- when:
|
- when:
|
||||||
message_type: KojiTagChanged
|
message_type: KojiTagChanged
|
||||||
tag: {$regex: '/.*(?<!testing-pending)$$/'}
|
tag: {$regex: '/.*(?<!testing-pending)$$/'}
|
||||||
do:
|
do:
|
||||||
- {tasks: [upgradepath]}
|
- {tasks: [upgradepath]}
|
||||||
|
{% endif %}
|
||||||
{% if deployment_type in ['dev'] %}
|
{% if deployment_type in ['dev'] %}
|
||||||
- when: {message_type: DistGitCommit, namespace: modules}
|
- when: {message_type: DistGitCommit, namespace: modules}
|
||||||
do:
|
do:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue