ci: pin .NET 8 runtime for mikeio1d#663
Closed
ecomodeller wants to merge 2 commits into
Closed
Conversation
The GitHub Actions ubuntu-24.04 runner image bumped from 20260513.135 to 20260518.149 on 2026-05-18 and now ships .NET 10. mikeio1d's native shim only loads under .NET 8 (documented in its README and matched by its own CI), so the new image breaks the networks-group tests with a DllNotFoundException for libufs.so. Install .NET 8 explicitly via actions/setup-dotnet in the workflows that pull the networks group: full_test, notebooks_test, docs.
setup-dotnet@v4 installs .NET 8 alongside the runner's pre-existing .NET 10 in /usr/share/dotnet, and the .NET host still rolls forward to 10.x at load time. Delete the newer runtimes after install so mikeio1d resolves to .NET 8 as documented.
Member
Author
|
I surrender. |
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.
Summary
The GitHub Actions
ubuntu-24.04runner image rolled forward from20260513.135to20260518.149on 2026-05-18 and now ships .NET 10.mikeio1donly loads under .NET 8 — see its README (sudo apt install dotnet-runtime-8.0) and its own CI config which pinsdotnet-version: '8.0.x'.Result: every modelskill job that pulls the
networksgroup started failing withDllNotFoundException: Unable to load shared library 'ufs'.This PR adds
actions/setup-dotnet@v4with8.0.xto the three workflows that install thenetworksgroup, mirroring upstream.Notes