Integrate fetching latest components into Systemtest.py#842
Merged
Conversation
This was referenced Jun 15, 2026
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.
This PR largely simplifies the GitHub Actions workflows by integrating the resolution of the latest commits of each repository directly into the
systemtests.py.The algorithm now is generally:
_REF, resolve the respective commit from the given repositoryTo achieve that, besides the changes in
systemtests.py:components.yaml, I moved therepository:from the component level to the level of each build argument. This is a bit ugly, but it was the easiest access to therepository. Note that this has to be the same as the remote in the respective Dockerfile (currently not enforced).components.yaml, I replaced all the default git references to the respective develop branches. Themaster/mainwere anyway not really useful. I also removed thedescription, since these were also not used anywhere.For the GitHub Actions workflows:
nmbgeek/github-action-get-latest-commitaction:VeyronSakai/display-inputs-action, replacing it with a JSON dump of all given inputs.The workflows can be further simplified and cleaned-up, but that's good enough for now.
I have ran the system tests locally and on GitHub Actions, using branches and tags as given refs, as well as omitting or giving empty arguments. Empty arguments are now assumed to be replaced by the default. Example run: https://github.com/precice/tutorials/actions/runs/27567474586 (the inputs will only be shown once merged to develop, since it reuses the
run_testsuiteworkflow.Closes #841.
Checklist
changelog-entries/<PRnumber>.md.