Skip to content

Commit

Permalink
Disable cpanm tests for RHEL 7 and CentOS 7 (#8312)
Browse files Browse the repository at this point in the history
Disable cpanm tests for RHEL 7 and CentOS 7.
  • Loading branch information
felixfontein authored May 5, 2024
1 parent d75dee3 commit 4bd68ac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration/targets/cpanm/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
- name: bail out for non-supported platforms
meta: end_play
when:
- (ansible_os_family != "RedHat" or ansible_distribution_major_version|int < 7)
- (ansible_os_family != "RedHat" or ansible_distribution_major_version|int < 8) # TODO: bump back to 7
- (ansible_distribution != 'CentOS' or ansible_distribution_major_version|int < 8) # TODO: remove
- ansible_os_family != "Debian"

- name: install perl development package for Red Hat family
Expand Down

0 comments on commit 4bd68ac

Please sign in to comment.