Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/lint-sram-lef.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Lint FakeRAM LEFs

# Guards the wd_in pin-direction invariant on every committed FakeRAM LEF.
# Cheap grep-only check — no toolchain, no LLM, no bazel cache.
on:
pull_request:
paths:
- "designs/**/sram/lef/*.lef"
- "tools/check_sram_lef.sh"
- ".github/workflows/lint-sram-lef.yml"
push:
branches: [main]
workflow_dispatch:

jobs:
check-sram-lef:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- run: ./tools/check_sram_lef.sh
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,4 @@ tmp/
# tools/regenerate_sram.sh; the .lef/.lib that matter are copied into
# designs/<platform>/<design>/sram/{lef,lib}/ and tracked there.
designs/src/*/dev/generated/sram/
scratch/
Loading
Loading