-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Julia manifest #1204
Update Julia manifest #1204
Conversation
This causes test ribasim_api to fail, only on Linux. There is no real error to go by however.
|
Seems like it just crashes. |
Thanks, that shows a segfault:
The libgomp line in question is here: https://github.com/gcc-mirror/gcc/blob/c891d8dc23e1a46ad9f3e757d09e57b500d40044/libgomp/env.c#L2062 I suspect it is related to the update of CompilerSupportLibraries_jll, which is updated from "1.0.5+1" to "1.1.0+0" as you can see in the Manifest.toml. It looks like this is a stdlib that we cannot update separately from Julia itself. I see this has already been patched in JuliaPackaging/Yggdrasil#8205. Not sure yet if we can get this fixed CompilerSupportLibraries_jll with julia 1.10.2 or that we should wait until 1.10.3. We need CompilerSupportLibraries_jll v1.1.1. |
Taken out of #1204 whilst that is on hold. The directories changed in #1021, causing our precompile run to return error code 1 with a "TOML not found error". That means we were not precompiling an actual run and therefore probably need to wait a bit longer before the start of a simulation. This fixes the directory and adds an assertion to make sure the simulation is successful.
8de1018
to
dadff3c
Compare
I was wondering why the automated part of #1204 bumps the Julia version in the Manifest.toml. It is because we didn't run `juliaup default 1.10.0` yet, so 1.10.2 is the default. This fixes that. There is no need to run all of `pixi run install` for this action. --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: GitHub <noreply@github.com>
Update Julia dependencies to the latest version.