Enable the check_modulemd taskotron check in taskotron-dev.

This commit is contained in:
Ralph Bean 2017-01-18 16:53:20 +00:00
parent f5d8e102ad
commit 13275abc76
3 changed files with 7 additions and 0 deletions

View file

@ -30,6 +30,7 @@ grokmirror_repos:
- { name: fedoraqa/rpmgrill, url: 'https://bitbucket.org/fedoraqa/task-rpmgrill.git'}
- { name: fedoraqa/simpledocker, url: 'https://bitbucket.org/fedoraqa/task-simpledocker.git'}
- { name: fedoraqa/python-versions, url: 'https://github.com/fedora-python/task-python-versions'}
- { name: fedoraqa/check_modulemd, url: 'https://github.com/fedora-modularity/check_modulemd'}
grokmirror_default_branch: develop

View file

@ -13,6 +13,7 @@ namespaces_whitelist:
- {{ grokmirror_user }}@{{ buildmaster }}:/var/lib/git/mirror/fedoraqa/abicheck/
- {{ grokmirror_user }}@{{ buildmaster }}:/var/lib/git/mirror/fedoraqa/rpmgrill/
- {{ grokmirror_user }}@{{ buildmaster }}:/var/lib/git/mirror/fedoraqa/python-versions/
- {{ grokmirror_user }}@{{ buildmaster }}:/var/lib/git/mirror/fedoraqa/check_modulemd/
pkg:
# The directory used to be called rpms-checks
- git://pkgs.fedoraproject.org/rpms-checks/

View file

@ -30,3 +30,8 @@
tag: {$regex: '/.*(?<!testing-pending)$$/'}
do:
- {tasks: [upgradepath]}
{% if deployment_type in ['dev'] %}
- when: {message_type: DistGitCommit, namespace: modules}
do:
- {tasks: [check_modulemd]}
{% endif %}