Skip to content

Commit

Permalink
Adjustments for workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gkielian committed Nov 11, 2023
1 parent af93505 commit 1a7cf13
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 13 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/verify_gen_gds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,15 @@ jobs:
python3 -m pip install -r requirements.txt
- name: Run gen_opamp
run: |
ls
cd openfasoc/generators/gdsfactory-gen/tapeout_and_RL
ls
python3 sky130_nist_tapeout.py gen_opamp -output_gds test.gds
ls
- name: Run test
run: |
ls
cd openfasoc/generators/gdsfactory-gen/tapeout_and_RL
python3 sky130_nist_tapeout.py test -output_dir test_output_dir
ls
13 changes: 0 additions & 13 deletions git_runner_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,9 @@ proceed_confirmed=false
update_confirmed=false
while ! $proceed_confirmed
do
echo "[OpenFASoC] Do you wish to proceed with the installation?
[y] Yes. Install for the first time.
[u] Yes. Update already-installed dependencies.
[n] No. Exit this script."
read -p "Select the desired option: " selection
selection="y"
if [ "$selection" == "y" ] || [ "$selection" == "Y" ]; then
echo "Beginning installation..."; proceed_confirmed=true
elif [ "$selection" == "n" ] || [ "$selection" == "N" ]; then
echo "Quitting script."; exit
elif [ "$selection" == "u" ] || [ "$selection" == "U" ]; then
update_confirmed=true
proceed_confirmed=true
else
echo "[OpenFASoC] Invalid selection. Choose y or n."
fi
done

if $update_confirmed; then
Expand Down

0 comments on commit 1a7cf13

Please sign in to comment.