Skip to content

Commit

Permalink
fix log checking
Browse files Browse the repository at this point in the history
  • Loading branch information
elamdf committed Dec 23, 2024
1 parent c189a49 commit 66bda46
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e-cad.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ jobs:
echo "Checking that LVS passed..." | tee -a $tempfile
# TODO these are probably pretty brittle...
if grep -q "Result : MATCH" "$tempfile"; then
if grep "Run Result : MATCH" "$tempfile"; then
echo "There's an LVS mismatch! see $tempfile for log" | tee -a $tempfile
exit 1
fi
echo "LVS passed!" | tee -a $tempfile
echo "Checking that DRC is clean..." | tee -a $tempfile
if grep -q "Total DRC Results : 0 (0)" "$tempfile"; then
if grep "Total DRC Results : 0 (0)" "$tempfile"; then
echo "There are DRC violations! see $tempfile for log" | tee -a $tempfile
exit 1
fi
Expand Down

0 comments on commit 66bda46

Please sign in to comment.