Skip to content
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

ci: standardise workflows using SciML's reusable workflows #808

Open
wants to merge 8 commits into
base: master
Choose a base branch
from

Conversation

thazhemadam
Copy link
Member

Update the workflows in this repository to use SciML's reusable workflows.
This is part of a larger effort to standardise the SciML's CI workflows for more generic and common requirements, to keep the workflows uniform and easier to maintain.

@isaacsas
Copy link
Member

Thanks. We can add these with Catalyst 14, unfortunately merging now would lead to broken dev docs so this has to wait till that is merged to master.

@thazhemadam
Copy link
Member Author

unfortunately merging now would lead to broken dev docs so this has to wait till that is merged to master.

I'm confused, why do we have to wait? The documentation workflows haven't been standardised (yet), so remain unaffected by this. Aren't these mutually exclusive?
That said, I'm okay to wait to have this merged.

@TorkelE
Copy link
Member

TorkelE commented May 28, 2024

The seems to be some errors in the runtests that are not there on normal CI runs? Is this something that is related to this PR, or a normal MTK issue that for some reason only does things for this PR?

@thazhemadam
Copy link
Member Author

thazhemadam commented May 28, 2024

depwarn is set to true with the new centralised workflows, which seems to be the reason why the tests are failing.
This can be configured to be set to false as well, if that's what you'd prefer instead (although it's not recommended).

@isaacsas
Copy link
Member

isaacsas commented Jun 7, 2024

Will depwarn = true cause tests to fail here even if the warnings are only coming from code called within a library we depend on? (i.e. we aren't directly calling deprecated code, the library we depend on is.)

@isaacsas
Copy link
Member

@thazhemadam we've updated everything but docs and CI -- we are now frequently getting test failures due to codecov token limits. Is that fixed in the SciML wide versions of those scripts? I ended up having to disable test failures for both with regards to codecov to keep tests passing consistently here. If it is fixed in the SciML-wide versions we can switch, otherwise we'd want to keep versions here that turn off failures from codecov. (If your scripts can be fixed to do that I am happy to merge such versions.)

Thanks!

@thazhemadam
Copy link
Member Author

thazhemadam commented Jul 29, 2024

The codecov token limit issue is something that severely affected SciML's CI setups as a whole, so having that addressed appropriately in the centralized solution has always been important.
The centralized solution limits when codecov is run to only when PRs are made from branches that don't originate from forks (which isn't very often). At some point, we'll have codecov run only on the default branch instead.

* Standardise the tests workflow, using the reusab SciML tests workflow.
* Rename the tests workflow to `Tests.yml`, instead of `CI.yml`, since
it's more semantically correct and CI encompasses all the workflows that
are run.
@isaacsas
Copy link
Member

We need the failing CI based on codecov flag to be false as otherwise we get too many failures induced by codecov problems (they seem to go down / break quite frequently).

@ChrisRackauckas
Copy link
Member

Anant's point is that's fixed by the changes here. It's fixed because that failure only happens on forks, and so it's simply disabled for forks.

src/Catalyst.jl Outdated Show resolved Hide resolved
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
src/Catalyst.jl Outdated Show resolved Hide resolved
Co-authored-by: Mosè Giordano <giordano@users.noreply.github.com>
@ChrisRackauckas
Copy link
Member

@giordano
Copy link

@ChrisRackauckas
Copy link
Member

I don't see open, pprint, or write = true in there at all. Is there another page?

@giordano
Copy link

The construction of the Cmd object is the main thing, it doesn't matter how you use it, whether in run, open, or else.

@ChrisRackauckas
Copy link
Member

@isaacsas can you help? I can't parse those docs at all.

@giordano
Copy link

giordano commented Jul 31, 2024

I can't make suggestions and I'm away from keyboard, so I can't produce a diff, but basically you need to use

open(`$(fun()) -T$format`, io, write = true) do gv
    pprint(gv, graph)
end

and remove the wrapping fun() (which is the same suggestion as above #808 (comment))

@giordano
Copy link

Side note, the nice way to override jll products is https://docs.binarybuilder.org/stable/jll/#Overriding-specific-products, instead of doing getfield magics

fun = getfield(Graphviz_jll, Symbol(prog))

@isaacsas
Copy link
Member

At some point we should probably just investigate if we can use GraphMakie or such and stop using the binaries.

@ChrisRackauckas
Copy link
Member

I commented the test for now since I'm not sure how to handle this, and I'll see if all of the others are done.

@isaacsas
Copy link
Member

Ok, but I’d prefer to hold off merging this until we know how to fix graph plotting. I’m away from my computer till Monday but can try to investigate some next week when I am back from vacation.

@ChrisRackauckas
Copy link
Member

The HomotopyContinuation needs JuliaHomotopyContinuation/HomotopyContinuation.jl#579

@ChrisRackauckas
Copy link
Member

Ok, but I’d prefer to hold off merging this until we know how to fix graph plotting. I’m away from my computer till Monday but can try to investigate some next week when I am back from vacation.

Yes that's my intention, I just wanted to solve everything else first.

@ChrisRackauckas
Copy link
Member

@isaacsas isaacsas closed this Aug 5, 2024
@isaacsas isaacsas reopened this Aug 5, 2024
@isaacsas
Copy link
Member

isaacsas commented Aug 5, 2024

@ChrisRackauckas are deprecation warnings supposed to completely fail CI? Is that a new behavior?

@ChrisRackauckas
Copy link
Member

Yes, we are trying to enforce it globally, which of course at first is going to be tough 😅

@isaacsas
Copy link
Member

isaacsas commented Aug 6, 2024

Is there a way to set it to only fail for warnings generated in the Catalyst, and not libraries it depends on? I think having to handle ensuring libraries we depend on via extensions or tests also handle deprecation warnings is potentially going to be difficult / burdensome for us.

@ChrisRackauckas
Copy link
Member

There is not. But, I will make the bold statement that since we are putting this on everywhere, it should not be that difficult to maintain it in Catalyst. In the end, it should make maintaining Catalyst easier because it shifts the burden of updating downstream to the person who makes the deprecation. Currently, making a deprecation is "free", which incentivizes making a change that deprecates and then letting it be someone else's problem 2 years down the line. With this change, you have to update downstream because otherwise you broke tests. The only issues then are the libraries outside of SciML which are less strict. But Catalyst mostly just hits dependencies that the rest of SciML uses, so it should get the treatment before it's noticed here anyways. And in all of the SciML updates, so far only HomotopyContinuation and Turing have turned out to be issues, so it seems the set is sufficiently policeable.

So I'd like to give it a try at least. If the experiment fails, we can flip a switch in just a single .github file and it would go away, so it's easy to change after this canonicalization.

@isaacsas
Copy link
Member

isaacsas commented Aug 6, 2024

We can test it out sure. I think the packages we'll have to worry about are BifurcationKit, Makie, Plots, HomotopyContinuation, DynamicPolynomials, and DynamicQuantities.

@isaacsas
Copy link
Member

isaacsas commented Aug 6, 2024

And Unitful.

@ChrisRackauckas
Copy link
Member

Current battle: saschatimme/MixedSubdivisions.jl#24

@isaacsas
Copy link
Member

This was my worry. I'm not confident that even if we get all deps to have no depwarnings at this point in time they will stay passing (because, for example, their CI won't fail over depwarns so they won't notice sudden depwarns in their tests).

@ChrisRackauckas
Copy link
Member

Well we have many years worth of ignoring compats so right now it's the worst. But I plan to keep on top of it. At least right now it doesn't seem like too bad of an idea... we'll see how it feels 2 years down the line 😅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants