Skip to content

Commit

Permalink
ci: skip ostree-remount check in CS9 due to bug RHEL-25249
Browse files Browse the repository at this point in the history
  • Loading branch information
mcattamoredhat authored and ondrejbudai committed Feb 27, 2024
1 parent 51a6b08 commit e6a7cb2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/data/ansible/check_ostree.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -499,8 +499,9 @@
- name: failed count + 1
set_fact:
failed_counter: "{{ failed_counter | int + 1 }}"
# Skipping playbook task in CS9 due to bug https://issues.redhat.com/browse/RHEL-25249
when: (edge_type == "none") and ((ansible_facts['distribution'] == 'Fedora' and ansible_facts['distribution_version'] is version('37', '<')) or
(ansible_facts['distribution'] == 'CentOS') or (ansible_facts['distribution'] == 'RedHat'))
((ansible_facts['distribution'] == 'CentOS') and ansible_facts['distribution_version'] is version('9', '!=')) or (ansible_facts['distribution'] == 'RedHat'))

# case: check dmesg error and failed log
- name: check dmesg output
Expand Down

0 comments on commit e6a7cb2

Please sign in to comment.