-
Notifications
You must be signed in to change notification settings - Fork 1
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 to julia 1.10 #156
Update to julia 1.10 #156
Conversation
TBH, for the time being I would just add Feel free to ping me once I should review anything |
This fortunately fixes #152 . But there is some issue with PackageCompiler:
This happens when I noticed it works when
In particular the latter contains However, both choices worked with julia 1.9. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #156 +/- ##
=======================================
Coverage 97.98% 97.98%
=======================================
Files 13 13
Lines 547 547
=======================================
Hits 536 536
Misses 11 11
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
I would like to have green lights on main again. So, for the time being, I would like to use julia 1.10 as default, and 1.9.3 for testing package compiler. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of guarding all these PC.jl runs against usage with v1.10 in the if conditions, why don't you just remove the package-compiler
from the test matrix in line 35 (https://github.com/trixi-framework/libtrixi/pull/156/files#diff-b803fcb7f17ed9235f1e5cb1fcd2f5d3b2838429d4368ae4c57ce4436577f03fR35)? Shouldn't this then do exactly what you want: run the default items in the test matrix except for the PC.jl stuff, which you explicitly add for Julia v1.9.3 in the include
section. Or am I missing something?
Yeah, that is way more clever! |
No description provided.