-
Notifications
You must be signed in to change notification settings - Fork 5
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: Dependency tests #215
Conversation
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.
you're fixing my bugs :-)
squash and rebase before merge...
@@ -28,14 +29,22 @@ do | |||
stages+=("do-yosys-keep-hierarchy") | |||
stages+=("do-yosys") | |||
stages+=("do-synth") | |||
[ $(find build/results -maxdepth 1 -name '*.lef' | wc -l) -eq 1 ] |
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.
remove maxdepth
elif [[ $stage == "grt" ]]; then | ||
stages+=("do-5_1_grt") | ||
elif [[ $stage == "route" ]]; then | ||
stages+=("do-5_2_route") | ||
stages+=("do-5_3_fillcell") | ||
elif [[ $stage == "cts" ]]; then | ||
[ $(find build/results -maxdepth 1 -name '*.odb' | wc -l) -eq 1 ] | ||
[ $(find build/results -maxdepth 1 -name '*.lef' | wc -l) -eq 0 ] |
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.
.lef should be -eq 1
.github/workflows/ci.yml
Outdated
rm -rf ./build | ||
bazel run ${{ matrix.STAGE_TARGET }}_synth -- `pwd`/build OR_ARGS=-exit open_synth | ||
[ $(find build/results -maxdepth 1 -name '*.lef' | wc -l) -eq 0 ] |
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.
remove -maxdepth
merged! |
@oharboe