tarpaulin: install via taiki-e/install-action, fix libssl.so.1.1 load failure#77
Merged
Merged
Conversation
…oad failure
The `check` (coverage) job has been red on every master push since
2025-10-19. actions-rs/tarpaulin@v0.1 downloads a pinned cargo-tarpaulin
0.22.0 binary linked against libssl.so.1.1, which the ubuntu-24.04 runner
does not provide (it ships libssl.so.3). The binary therefore fails to
load before any test runs:
cargo-tarpaulin: error while loading shared libraries: libssl.so.1.1:
cannot open shared object file: No such file or directory
The process '.../cargo' failed with exit code 127
so coverage never executes. actions-rs/* is archived and unmaintained and
already emits a Node 20 deprecation warning on every run.
Install a current cargo-tarpaulin through the maintained
taiki-e/install-action and invoke it directly. The --out Xml output and
the existing arguments are preserved, so the downstream codecov upload is
unchanged.
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.
Problem
The
tarpaulinworkflow'scheck(coverage) job has been red on everymasterpush since 2025-10-19 — independent of the source, which compiles and tests cleanly (cargo test --all-featuresis green, all tests pass).actions-rs/tarpaulin@v0.1downloads a pinnedcargo-tarpaulin0.22.0 binary that is linked againstlibssl.so.1.1. Theubuntu-24.04runner only shipslibssl.so.3, so the binary cannot load and exits before any test runs:Coverage therefore never executes.
actions-rs/*is also archived/unmaintained and already emits a Node 20 deprecation warning on every run.Fix
Install a current
cargo-tarpaulinthrough the maintainedtaiki-e/install-actionand invoke it directly.--out Xmland the existing arguments are preserved, so the downstreamcodecov/codecov-actionupload is unchanged.This is a CI-only change; no library code is touched.