You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
After submitting a PR with the Requires-spl: keyword all subsequent build requests will use the same SPL commit instead of defaulting back to master. Restarting the build master resets the SPL dependency and is the current work around the issue.
The text was updated successfully, but these errors were encountered:
I believe the issue is with ss = self.codebases[codebase] in CustomSingleBranchScheduler.getCodebaseDict. I believe ss is a shallow copy of the dictionary pulled from self.codebases.
There are copy tools in python that can be used to make a deep copy. I'll make a pull request shortly. I'm not sure how we would be able to actually test it though.
When a PR is submitted with the Requires-spl keyword, all
subsequent builds will use that SPL commit instead of
defaulting back to master. Corrected the
CustomSingleBranchScheduler.getCodebaseDict function
to make a deep copy of the codebase dictionary before
modifying it.
This closesopenzfs#27.
Signed-off-by: Giuseppe Di Natale <dinatale2@llnl.gov>
After submitting a PR with the
Requires-spl:
keyword all subsequent build requests will use the same SPL commit instead of defaulting back to master. Restarting the build master resets the SPL dependency and is the current work around the issue.The text was updated successfully, but these errors were encountered: