1 Commits

Author SHA1 Message Date
Byron Lathi
933fb8ce79 Fix multiple xdc files 2025-02-23 18:06:56 -08:00
3 changed files with 2 additions and 45 deletions

View File

@@ -1,38 +0,0 @@
name: Publish Package
on: [push]
jobs:
build:
name: Build Package
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- run: python3 -m pip install build --user
- run: python -m build
- uses: actions/upload-artifact@v3
with:
name: python-package-distributions
path: dist/
deploy:
name: Deploy Package
needs:
- build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- run: python3 -m pip install twine --user
- uses: actions/download-artifact@v3
name: python-package-distributions
path: dist/ # Does this even do anything?
- run: ls -laR python-package-distributions
- run: TWINE_PASSWORD=${{ secrets.PYPI_PAT }} TWINE_USERNAME=bslathi19 python -m twine upload --repository-url ${{ vars.CI_API_URL }} python-package-distributions/*

View File

@@ -35,7 +35,7 @@ name = "build-fpga" # REQUIRED, is the only field that cannot be marked as dyna
# https://packaging.python.org/guides/single-sourcing-package-version/
# dynamic = ["version"]
version = "0.5.1" # REQUIRED, although can be dynamic
version = "0.4.2" # REQUIRED, although can be dynamic
# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:

View File

@@ -7,7 +7,6 @@ def build_nonprj(cfg):
verilog_sources = list(filter(lambda s: (s.endswith(".v") or s.endswith(".sv")), all_sources))
xci_sources = list(filter(lambda s: s.endswith(".xci"), all_sources))
xdc_sources = list(filter(lambda s: s.endswith(".xdc"), all_sources))
tcl_sources = list(filter(lambda s: s.endswith(".tcl"), all_sources))
top = cfg["design_info"]["top_module"]
part = cfg["device_info"]["device"]
@@ -42,11 +41,7 @@ def build_nonprj(cfg):
f.write(f"synth_ip [get_ips *]\n")
f.write(f"synth_design -top {top} -directive {synth_directive}\n")
f.write(f"write_checkpoint -force $outputDir/post_synth.dcp\n")
f.write(f"report_utilization -hierarchical -file $outputDir/post_synth_util.rpt\n")
if tcl_sources is not []:
for tcl_script in tcl_sources:
f.write(f"source {tcl_script}\n")
f.write(f"report_utilization -file $outputDir/post_synth_util.rpt\n")
f.write(f"opt_design -directive {opt_directive}\n")
f.write(f"place_design -directive {place_directive}\n")