Skip to content

Commit

Permalink
Merge pull request #243 from saicharan0112/update_env
Browse files Browse the repository at this point in the history
Update CI to support python3.10,  install latest conda version and update openroad version
  • Loading branch information
msaligane authored Oct 2, 2023
2 parents 76737b5 + 61c97a7 commit 708f2ac
Show file tree
Hide file tree
Showing 27 changed files with 89 additions and 1,144 deletions.
9 changes: 0 additions & 9 deletions .bumpversion.cfg

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/cryo_gen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
paths:
- 'openfasoc/common/**'
- 'openfasoc/generators/common/**'
- 'openfasoc/generators/common/cryo-gen/**'
- 'openfasoc/generators/cryo-gen/**'
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -38,5 +38,6 @@ jobs:
cd ./openfasoc/generators/cryo-gen &&\
make ${{ matrix.platform }}_cryo &&\
python3 parse_rpt.py ${{ matrix.platform }}
"| tee -a 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
5 changes: 3 additions & 2 deletions .github/workflows/ldo_sky130hvl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
paths:
- 'openfasoc/common/**'
- 'openfasoc/generators/common/**'
- 'openfasoc/generators/common/ldo-gen/**'
- 'openfasoc/generators/ldo-gen/**'
workflow_dispatch:

jobs:
Expand All @@ -34,5 +34,6 @@ jobs:
cd ./openfasoc/generators/ldo-gen &&\
make sky130hvl_ldo &&\
python3 parse_rpt.py sky130hvl_ldo
"| tee -a 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
17 changes: 0 additions & 17 deletions .github/workflows/pre-commit.yml

This file was deleted.

29 changes: 0 additions & 29 deletions .github/workflows/pythonpublish.yml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/workflows/tempSense_sky130hd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
paths:
- 'openfasoc/common/**'
- 'openfasoc/generators/common/**'
- 'openfasoc/generators/common/temp-sense-gen/**'
- 'openfasoc/generators/temp-sense-gen/**'
workflow_dispatch:

jobs:
Expand All @@ -34,5 +34,6 @@ jobs:
cd ./openfasoc/generators/temp-sense-gen &&\
make sky130hd_temp &&\
python3 parse_rpt.py
"| tee -a 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
4 changes: 2 additions & 2 deletions .github/workflows/test_python_api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ on:
paths:
- 'openfasoc/common/**'
- 'openfasoc/generators/common/**'
- 'openfasoc/generators/common/cryo-gen/**'
- 'tests/**'
- 'requirements.txt'
- 'pytest.ini'
Expand All @@ -21,7 +20,7 @@ jobs:
strategy:
max-parallel: 12
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ["3.8", "3.9", "3.10"]
os: [ubuntu-latest]

steps:
Expand All @@ -37,6 +36,7 @@ jobs:
sudo apt install -y ngspice
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
# pip install .
- name: Test with pytest
run: pytest
71 changes: 0 additions & 71 deletions .gitlab-ci.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .pre-commit-config.yaml

This file was deleted.

14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

3 changes: 0 additions & 3 deletions MANIFEST.in

This file was deleted.

Loading

0 comments on commit 708f2ac

Please sign in to comment.