Merge branch 'master' of /git/ansible
This commit is contained in:
commit
f388a20a82
1 changed files with 35 additions and 15 deletions
|
@ -1,51 +1,71 @@
|
||||||
---
|
---
|
||||||
- when: {message_type: KojiBuildPackageCompleted}
|
- when:
|
||||||
|
message_type: KojiBuildPackageCompleted
|
||||||
do:
|
do:
|
||||||
- {tasks: [rpmlint, rpmgrill, python-versions]}
|
- tasks:
|
||||||
|
- python-versions
|
||||||
|
- rpmgrill
|
||||||
|
- rpmlint
|
||||||
|
|
||||||
- when:
|
- when:
|
||||||
message_type: KojiBuildPackageCompleted
|
message_type: KojiBuildPackageCompleted
|
||||||
name:
|
name:
|
||||||
$nin: [{{ trigger_abicheck_blacklist | join(',') }}]
|
$nin:
|
||||||
|
- "{{ trigger_abicheck_blacklist | join(',') }}"
|
||||||
do:
|
do:
|
||||||
- {tasks: [abicheck]}
|
- tasks:
|
||||||
|
- abicheck
|
||||||
|
|
||||||
- when:
|
- when:
|
||||||
message_type: KojiTagChanged
|
message_type: KojiTagChanged
|
||||||
tag: {$regex: '/^f[0-9]{2}-updates(-testing)?-pending$$/'}
|
tag:
|
||||||
|
$regex: '/^f[0-9]{2}-updates(-testing)?-pending$$/'
|
||||||
do:
|
do:
|
||||||
- {tasks: [rpmdeplint]}
|
- tasks:
|
||||||
|
- rpmdeplint
|
||||||
|
|
||||||
- when: {message_type: DistGitCommit, namespace: modules}
|
- when:
|
||||||
|
message_type: DistGitCommit
|
||||||
|
namespace: modules
|
||||||
do:
|
do:
|
||||||
- {tasks: [check_modulemd]}
|
- tasks:
|
||||||
|
- check_modulemd
|
||||||
|
|
||||||
- when:
|
- when:
|
||||||
message_type: GitHubPullRequestOpened
|
message_type: GitHubPullRequestOpened
|
||||||
repo_name: {$regex: '/^container-images\/.+/'}
|
repo_name:
|
||||||
|
$regex: '/^container-images\/.+/'
|
||||||
do:
|
do:
|
||||||
- {tasks: [mtf-containers]}
|
- tasks:
|
||||||
|
- mtf-containers
|
||||||
|
|
||||||
{% if deployment_type in ['stg', 'prod'] %}
|
{% if deployment_type in ['stg', 'prod'] %}
|
||||||
{# these tasks are not ansiblized yet #}
|
{# these tasks are not ansiblized yet #}
|
||||||
- when:
|
- when:
|
||||||
message_type: ModuleBuildComplete
|
message_type: ModuleBuildComplete
|
||||||
do:
|
do:
|
||||||
- {tasks: [modularity-testing-framework]}
|
- tasks:
|
||||||
|
- modularity-testing-framework
|
||||||
|
|
||||||
- when: {message_type: KojiBuildPackageCompleted, name: docker}
|
- when:
|
||||||
|
message_type: KojiBuildPackageCompleted
|
||||||
|
name: docker
|
||||||
do:
|
do:
|
||||||
- {tasks: [dockerautotest]}
|
- tasks:
|
||||||
|
- dockerautotest
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{# disabled due to missing nested virt: https://pagure.io/taskotron/issue/239
|
{# disabled due to missing nested virt: https://pagure.io/taskotron/issue/239
|
||||||
- when:
|
- when:
|
||||||
message_type: AtomicCompose
|
message_type: AtomicCompose
|
||||||
do:
|
do:
|
||||||
- {tasks: [upstream-atomic, fedora-cloud-tests]}
|
- tasks:
|
||||||
|
- upstream-atomic
|
||||||
|
- fedora-cloud-tests
|
||||||
|
|
||||||
- when:
|
- when:
|
||||||
message_type: CloudCompose
|
message_type: CloudCompose
|
||||||
do:
|
do:
|
||||||
- {tasks: [fedora-cloud-tests]}
|
- tasks:
|
||||||
|
- fedora-cloud-tests
|
||||||
#}
|
#}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue