-
Notifications
You must be signed in to change notification settings - Fork 135
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
Pin Yosys back to 0.29 as workaround for Nexus flow (Yosys #4081). #810
Conversation
Hi @PiotrZierhoffer! I still seem to be seeing intermittent certificate issues with dl.antmicro.com. I could probably get it to green if I could selectively rerun the failing test(s), but unfortunately I don't have the permission to do so. |
Signed-off-by: Tim Callahan <[email protected]>
I'm curious why this error is not showing up in the CI, are we missing some tests? |
I'm not sure where that link is from, but test-projects.yml is just one of the CI tests; it only runs Renode simulation and doesn't run synth / place / route for any platforms, so it doesn't encounter the issue here. Only the oxide-ci test in oxide.yml and other tests building bitstreams for the Nexus FPGA will encounter the issue. |
Looks like https://github.com/google/CFU-Playground/actions/workflows/oxide.yml?query=branch%3Amain++ was never ran on main, do we have a existing run of this job failing? (or can you share instruction to reproduce this locally? is that similar to #808 and #803?) |
Here is a run from the semi-automatic Renode update, from within the last 24hrs -- it is failing on the issue that's fixed by this PR ( https://github.com/google/CFU-Playground/actions/runs/8368656346/job/22913100078 |
But I agree, the CI runs could use a review and reorg, to make it easier to find the ongoing failures. |
I wasn't planning on doing that in this PR though, @proppy. |
Makes sense, I just wanted a way to check that it's indeed fixing the issue: |
Workaround for YosysHQ/yosys#4081.
This issue is specific to the Lattice Nexus flow.
With current Yosys, the synthesized netlist from
synth_nexus
contains an explicit 1'b0 driving the low order CIN of a chain of CCU2 (carry chain) primitives. This causes anextpnr-nexus
error.nextpnr-nexus
expects this input to be undriven which I assume implies an implicit 1'b0 input.