Skip to content

Commit

Permalink
Merge pull request #2 from chetanyagoyal/patch-1
Browse files Browse the repository at this point in the history
comment ldo from build and test
  • Loading branch information
chetanyagoyal authored Jun 5, 2024
2 parents 701a925 + 7a00760 commit ce42c42
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/verify_latest_tools_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,25 +76,25 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2

- name: Test sky130hvl LDO
env:
IMAGE_NAME: msaligane/openfasoc:alpha
run: |
cd $GITHUB_WORKSPACE
touch file.log
docker run --rm \
-v $PWD:$PWD\
-w $PWD\
$IMAGE_NAME\
bash -c "\
cp ./.github/scripts/parse_rpt.py ./openfasoc/generators/ldo-gen/. &&\
pip3 install -r requirements.txt &&\
cd ./openfasoc/generators/ldo-gen &&\
make sky130hvl_ldo &&\
python3 parse_rpt.py sky130hvl_ldo
" && 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
# - name: Test sky130hvl LDO
# env:
# IMAGE_NAME: msaligane/openfasoc:alpha
# run: |
# cd $GITHUB_WORKSPACE
# touch file.log
# docker run --rm \
# -v $PWD:$PWD\
# -w $PWD\
# $IMAGE_NAME\
# bash -c "\
# cp ./.github/scripts/parse_rpt.py ./openfasoc/generators/ldo-gen/. &&\
# pip3 install -r requirements.txt &&\
# cd ./openfasoc/generators/ldo-gen &&\
# make sky130hvl_ldo &&\
# python3 parse_rpt.py sky130hvl_ldo
# " && 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


cryoGenerator:
Expand Down Expand Up @@ -186,4 +186,4 @@ jobs:
[BOT] Update dependencies successful version records in the repository
branch: versions-update-branch
push-to-fork: ${{ secrets.FORK_NAME }}
delete-branch: true
delete-branch: true

0 comments on commit ce42c42

Please sign in to comment.