ci: skip ostree-remount check in CS9 due to bug RHEL-25249

This commit is contained in:
Mario Cattamo 2024-02-27 10:53:32 +01:00 committed by Ondřej Budai
parent 51a6b08591
commit e6a7cb2544

View file

@ -499,8 +499,9 @@
- name: failed count + 1 - name: failed count + 1
set_fact: set_fact:
failed_counter: "{{ failed_counter | int + 1 }}" 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 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 # case: check dmesg error and failed log
- name: check dmesg output - name: check dmesg output