Skip to content

Commit

Permalink
filter out el7 dockers, they just hang in GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
h0tw1r3 committed Jan 29, 2024
1 parent 6cf3f5a commit 1219da3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ jobs:
uses: "./.github/workflows/module_acceptance.yml"
secrets: "inherit"
with:
runs_on: "ubuntu-latest"
flags: "--exclude-platforms '[\"ubuntu-18.04\",\"scientific-7\"]'" # TODO: remove when module dependencies are sorted
runs_on: ubuntu-20.04
flags: "--exclude-platforms '[\"ubuntu-18.04\",\"redhat-8\",\"redhat-7\",\"Scientific-7\",\"CentOS-7\",\"OracleLinux-7\"]'" # EL7 is failing on GHA, ubuntu 18 module updates
1 change: 1 addition & 0 deletions .rspec
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
--color
--format documentation
--tag ~skip
2 changes: 2 additions & 0 deletions .sync.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
---
.rspec:
unmanaged: true
.rubocop.yml:
default_configs:
AllCops:
Expand Down
4 changes: 3 additions & 1 deletion spec/spec_helper_acceptance_local.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ class LitmusHelper

RSpec.configure do |c|
if ENV['GITHUB_ACTIONS']
c.formatter = 'RSpec::Github::Formatter'
require 'rspec/github'
c.formatter = :documentation
c.add_formatter 'RSpec::Github::Formatter'
c.color_mode = :on
end

Expand Down
4 changes: 3 additions & 1 deletion spec/spec_helper_local.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

RSpec.configure do |c|
if ENV['GITHUB_ACTIONS']
c.formatter = 'RSpec::Github::Formatter'
require 'rspec/github'
c.formatter = :progress
c.add_formatter 'RSpec::Github::Formatter'
c.color_mode = :on
end

Expand Down

0 comments on commit 1219da3

Please sign in to comment.