Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ jobs:
contains(github.event.pull_request.labels.*.name, 'allowed-for-ci'))
uses: "puppetlabs/cat-github-actions/.github/workflows/module_acceptance.yml@main"
with:
flags: '--nightly --platform-exclude centos-7 --platform-exclude scientific-7 --platform-exclude oraclelinux-7'
flags: '--nightly --platform-exclude centos-7 --platform-exclude scientific-7 --platform-exclude oraclelinux-7 --platform-exclude redhat-7'
secrets: "inherit"
2 changes: 1 addition & 1 deletion spec/spec_helper_acceptance_local.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def retry_on_error_matching(max_retry_count = MAX_RETRY_COUNT, retry_wait_interv
# Make sure selinux is disabled so the tests work.
LitmusHelper.instance.run_shell('setenforce 0', expect_failures: true) if os[:family].match?(%r{redhat|oracle})

if os[:family] == 'redhat' && os[:release].to_i != 8
if os[:family] == 'redhat' && [9].include?(os[:release].to_i)
epel_owner = 'puppet'
LitmusHelper.instance.run_shell("puppet module install #{epel_owner}/epel")
LitmusHelper.instance.run_shell("puppet apply -e 'include epel'")
Expand Down
Loading