Skip to content

Commit

Permalink
Add workflow test and trim others temperorily
Browse files Browse the repository at this point in the history
Want to utilize the runners to test the verify_gen_gds.yml

Just temporarily removing the other tests so we can focus our runners
and increase our iteration speed.
  • Loading branch information
gkielian committed Nov 11, 2023
1 parent 98de5b1 commit 3a26bf2
Show file tree
Hide file tree
Showing 5 changed files with 36 additions and 184 deletions.
50 changes: 0 additions & 50 deletions .github/workflows/cryo_gen.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/ldo_sky130hvl.yml

This file was deleted.

46 changes: 0 additions & 46 deletions .github/workflows/tempSense_sky130hd.yml

This file was deleted.

42 changes: 0 additions & 42 deletions .github/workflows/test_python_api.yml

This file was deleted.

36 changes: 36 additions & 0 deletions .github/workflows/verify_gen_gds.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Basic Installation, gds setup
on: [push, pull_request]
jobs:
Install-Dependencies_Data-Prep_CPU-Training_CPU-Inference:
runs-on: ubuntu-latest
steps:
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "${{ github.repository }} repository has been cloned to the runner."
- run: echo "Currently on ${{ github.ref }} branch"
- name: ls of directory
run: |
ls ${{ github.workspace }}
# Caching pip dependencies
- name: Cache pip dependencies
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements_cpu.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
$CONDA/bin/conda env update --file environment.yml --name base
source git_runner_deps.sh
source ~/miniconda3/bin/activate
cd openfasoc/generators/gdsfactory-gen
python3 -m pip install --upgrade pip
python3 -m pip install -r requirements.txt
ls
cd tapeout_and_RL
ls
python3 sky130_nist_tapeout.py gen_opamp -output_gds test.gds
python3 sky130_nist_tapeout.py test -output_dir test_output_dir
ls

0 comments on commit 3a26bf2

Please sign in to comment.