Skip to content

Commit

Permalink
Merge pull request #262 from saicharan0112/main
Browse files Browse the repository at this point in the history
fix grepping open_pdks version in verify_latest_versions.yml, also pr…
  • Loading branch information
msaligane authored Nov 8, 2023
2 parents 84fc97f + 8008402 commit d767223
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/verify_latest_tools_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ jobs:
pip3 install -r requirements.txt &&\
cd ./openfasoc/generators/temp-sense-gen &&\
make sky130hd_temp\
">> file.log
" && exit_code=$? | tee -a file.log
if [ $? -ne 0 ]; then exit 1; fi
if grep "\[ERROR\]" file.log; then exit 1; else exit 0; fi
# sky130hd_temp_full:
Expand Down
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@ This project is led by a team of researchers at the University of Michigan and i
.. image:: https://colab.research.google.com/assets/colab-badge.svg
:target: https://colab.research.google.com/github/idea-fasoc/OpenFASOC/blob/main/docs/source/notebooks/ldo-gen/LDO_notebook.ipynb

* **Cryogenic -**
.. image:: https://github.com/idea-fasoc/OpenFASOC/actions/workflows/cryo_gen.yml/badge.svg
:target: https://github.com/idea-fasoc/OpenFASOC/actions/workflows/cryo_gen.yml


Getting Started
****************

Expand Down
2 changes: 1 addition & 1 deletion docker/conda/scripts/extract_tool_versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ echo "OpenROAD - $(conda list | grep -e openroad | tr -s " " | cut -d " " -f 2 |
echo "yosys - $(yosys -version | cut -d " " -f 2)"
echo "magic - $(magic --version)"
echo "netgen - $(conda list | grep netgen | tr -s " " | cut -d " " -f 2 | cut -d "_" -f 1)"
echo "open_pdks - $(cat $PDK_ROOT/sky130A/.config/nodeinfo.json | grep open_pdks | grep "\." | cut -d "\"" -f 4)"
echo "open_pdks - $(cat $PDK_ROOT/sky130A/.config/nodeinfo.json | grep -m 1 open_pdks | grep "\." | cut -d "\"" -f 4)"

0 comments on commit d767223

Please sign in to comment.