Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI to support python3.10, install latest conda version and update openroad version #243

Merged
merged 17 commits into from
Oct 2, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading