CI: Unify workflows & reduce r10k calls#125
Merged
bastelfreak merged 6 commits intoOpenVoxProject:mainfrom Oct 16, 2025
Merged
Conversation
ee156b2 to
1ed66cd
Compare
sebastianrakel
approved these changes
Oct 16, 2025
We had multiple workflows that were updating the modules cache.
On Ruby 3.4 it currently fails with:
```
Failures:
1) Bolt::Transport::SSH when execution fails catches EMFILE error and raises helpful message
Failure/Error:
expect {
yield
}.to(raise_error { |ex|
expect(ex).to be_a(klass)
expect(ex.issue_code).to eq(issue_code)
expect(ex.message).to match(message)
})
expected: nil
got: "CONNECT_ERROR"
(compared using ==)
# ./spec/lib/bolt_spec/errors.rb:8:in 'BoltSpec::Errors#expect_node_error'
# ./spec/integration/transport/ssh_spec.rb:158:in 'block (3 levels) in <top (required)>'
Finished in 1 minute 13.54 seconds (files took 1.54 seconds to load)
142 examples, 1 failure
```
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We had multiple workflows that were updating the modules cache.