Skip to content

Commit

Permalink
Update OpenROAD, Magic + DEF DRC Enhancement (The-OpenROAD-Project#1296)
Browse files Browse the repository at this point in the history
~ Added `-noblockage` to magic DEF read during DRC
~ Fixed automatic tool update CI
~ magic -> 5d51e10fb969b31e6e95b5fb78d21efeccc73c14
~ openroad_app -> 4174c3ad802d2ac1d04d387d2c4b883903f6647e
  • Loading branch information
donn authored Aug 31, 2022
1 parent e14b1fd commit ae089d8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tool_updater.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Create Pull Request
if: ${{ env.NO_UPDATE != '1' }}
uses: peter-evans/create-pull-request@v3
uses: peter-evans/create-pull-request@v4
with:
token: ${{ secrets.MY_TOKEN }}
title: "[BOT] Update ${{ env.TOOL }}"
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:

- name: Create Pull Request
if: ${{ env.NO_UPDATE != '1' }}
uses: peter-evans/create-pull-request@v3
uses: peter-evans/create-pull-request@v4
author: ${{ secrets.BOT_AUTHOR_LINE }}
committer: ${{ secrets.BOT_AUTHOR_LINE }}
with:
Expand Down
4 changes: 2 additions & 2 deletions dependencies/tool_metadata.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
make install
- name: magic
repo: https://github.com/rtimothyedwards/magic
commit: f7df5e7c86fb47c5fd445c846afddc6fbabad6ae
commit: 5d51e10fb969b31e6e95b5fb78d21efeccc73c14
build: |
./configure --prefix=$PREFIX $MAGIC_CONFIG_OPTS
make clean
Expand Down Expand Up @@ -58,7 +58,7 @@
in_install: false
- name: openroad_app
repo: https://github.com/The-OpenROAD-Project/OpenROAD
commit: 4a99e88667b0840531ca0096c4fa0da8f80d6cb1
commit: 4174c3ad802d2ac1d04d387d2c4b883903f6647e
build: ""
in_install: false
- name: git
Expand Down
2 changes: 1 addition & 1 deletion scripts/magic/drc.tcl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ if { [info exist ::env(MAGIC_DRC_USE_GDS)] && $::env(MAGIC_DRC_USE_GDS) } {
lef read $lef_file
}
}
def read $::env(CURRENT_DEF)
def read $::env(CURRENT_DEF) -noblockage
}

set drc_rpt_path $::env(drc_prefix).rpt
Expand Down

0 comments on commit ae089d8

Please sign in to comment.