Skip to content

Commit

Permalink
fix: change script name here
Browse files Browse the repository at this point in the history
  • Loading branch information
chetanyagoyal authored Jun 4, 2024
1 parent 727f981 commit 10d4383
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/glayout_sky130.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
-w $PWD \
$IMAGE_NAME \
bash -c "\
cp ./.github/scripts/test_glayout.py ./openfasoc/generators/glayout/. &&\
cp ./.github/scripts/test_glayout_ci.py ./openfasoc/generators/glayout/. &&\
cd ./openfasoc/generators/glayout &&\
pip3 install gdsfactory==7.7.0 prettyprint prettyprinttree gdstk &&\
python3 test_glayout.py --component opamp
python3 test_glayout_ci.py --component opamp
" && exit_code=$? | tee -a glayout.log
if [ $? -ne 0 ]; then exit 1; fi
if grep "\[ERROR\]" glayout.log; then exit 1; else exit 0; fi
Expand All @@ -57,10 +57,10 @@ jobs:
-w $PWD \
$IMAGE_NAME \
bash -c "\
cp ./.github/scripts/test_glayout.py ./openfasoc/generators/glayout/. &&\
cp ./.github/scripts/test_glayout_ci.py ./openfasoc/generators/glayout/. &&\
cd ./openfasoc/generators/glayout &&\
pip3 install gdsfactory==7.7.0 prettyprint prettyprinttree gdstk &&\
python3 test_glayout.py --component pmos
python3 test_glayout_ci.py --component pmos
" && exit_code=$? | tee -a glayout.log
if [ $? -ne 0 ]; then exit 1; fi
if grep "\[ERROR\]" glayout.log; then exit 1; else exit 0; fi
Expand All @@ -76,10 +76,10 @@ jobs:
-w $PWD \
$IMAGE_NAME \
bash -c "\
cp ./.github/scripts/test_glayout.py ./openfasoc/generators/glayout/. &&\
cp ./.github/scripts/test_glayout_ci.py ./openfasoc/generators/glayout/. &&\
cd ./openfasoc/generators/glayout &&\
pip3 install gdsfactory==7.7.0 prettyprint prettyprinttree gdstk &&\
python3 test_glayout.py --component nmos
python3 test_glayout_ci.py --component nmos
" && exit_code=$? | tee -a glayout.log
if [ $? -ne 0 ]; then exit 1; fi
if grep "\[ERROR\]" glayout.log; then exit 1; else exit 0; fi
Expand All @@ -95,10 +95,10 @@ jobs:
-w $PWD \
$IMAGE_NAME \
bash -c "\
cp ./.github/scripts/test_glayout.py ./openfasoc/generators/glayout/. &&\
cp ./.github/scripts/test_glayout_ci.py ./openfasoc/generators/glayout/. &&\
cd ./openfasoc/generators/glayout &&\
pip3 install gdsfactory==7.7.0 prettyprint prettyprinttree gdstk &&\
python3 test_glayout.py --component diff_pair
python3 test_glayout_ci.py --component diff_pair
" && exit_code=$? | tee -a glayout.log
if [ $? -ne 0 ]; then exit 1; fi
if grep "\[ERROR\]" glayout.log; then exit 1; else exit 0; fi
Expand All @@ -114,10 +114,10 @@ jobs:
-w $PWD \
$IMAGE_NAME \
bash -c "\
cp ./.github/scripts/test_glayout.py ./openfasoc/generators/glayout/. &&\
cp ./.github/scripts/test_glayout_ci.py ./openfasoc/generators/glayout/. &&\
cd ./openfasoc/generators/glayout &&\
pip3 install gdsfactory==7.7.0 prettyprint prettyprinttree gdstk &&\
python3 test_glayout.py --component current_mirror
python3 test_glayout_ci.py --component current_mirror
" && exit_code=$? | tee -a glayout.log
if [ $? -ne 0 ]; then exit 1; fi
if grep "\[ERROR\]" glayout.log; then exit 1; else exit 0; fi
if grep "\[ERROR\]" glayout.log; then exit 1; else exit 0; fi

0 comments on commit 10d4383

Please sign in to comment.