-
Notifications
You must be signed in to change notification settings - Fork 651
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
Fix TestDriver.v missing from gen-collateral after recompiling #1354
Conversation
This PR also fixes #1355 |
e9ca635
to
32dfc6f
Compare
This reverts commit be35854.
$(sim_files): $(SIM_FILE_REQS) | $(GEN_COLLATERAL_DIR) | ||
cp -f $^ $(GEN_COLLATERAL_DIR) | ||
$(sim_files): $(SIM_FILE_REQS) $(ALL_MODS_FILELIST) | $(GEN_COLLATERAL_DIR) | ||
cp -f $(SIM_FILE_REQS) $(GEN_COLLATERAL_DIR) | ||
$(foreach file,\ |
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.
I'm happy to merge this like this, but I think this is only a temporary fix. The rules should still work if SIM_FILE_REQS is an empty list.
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.
Agreed, I kind of came up with the easiest fix that will work quickly
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.
If this is blocking, let's merge this now. I found this issue as well and put this on my TODO list but I won't be able to get to this till afternoon tomorrow.
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.
Let's merge this as soon as the CI passes, to unblock some other CI runs.
After removing the
$GEN_COLLATERAL_DIR
,$(sim_files)
are not getting copied back because their prereqs ($(SIM_FILE_REQS)
) have not changed.Related PRs / Issues:
Type of change:
Impact:
Contributor Checklist:
main
as the base branch?changelog:<topic>
label?changelog:
label?.conda-lock.yml
file if you updated the conda requirements file?Please Backport
?