commit
230bf44e99
|
@ -63,6 +63,8 @@ jobs:
|
|||
Docs:
|
||||
runs-on: ubuntu-latest
|
||||
name: '📓 Docs'
|
||||
permissions:
|
||||
contents: write
|
||||
steps:
|
||||
|
||||
- name: 🧰 Checkout
|
||||
|
|
|
@ -1120,11 +1120,13 @@ def main(
|
|||
net=Path(net).open("r"),
|
||||
vpr_grid_map=vpr_grid_map,
|
||||
arch=arch,
|
||||
db_root=environ.get(
|
||||
"DATABASE_DIR", subprocess_run("prjxray-config", capture_output=True).stdout.decode("utf-8").strip()
|
||||
)
|
||||
if db_root is None
|
||||
else db_root,
|
||||
db_root=(
|
||||
environ.get(
|
||||
"DATABASE_DIR", subprocess_run("prjxray-config", capture_output=True).stdout.decode("utf-8").strip()
|
||||
)
|
||||
if db_root is None
|
||||
else db_root
|
||||
),
|
||||
part=part,
|
||||
blif=Path(blif).open("r"),
|
||||
input=sys.stdin if input is None else Path(input).open("r"),
|
||||
|
|
|
@ -19,14 +19,16 @@
|
|||
|
||||
version: 2
|
||||
|
||||
build:
|
||||
os: ubuntu-22.04
|
||||
tools:
|
||||
python: "mambaforge-22.9"
|
||||
|
||||
sphinx:
|
||||
configuration: docs/conf.py
|
||||
|
||||
formats: []
|
||||
|
||||
python:
|
||||
version: "3.7"
|
||||
|
||||
conda:
|
||||
environment: docs/environment.yml
|
||||
|
||||
|
|
Loading…
Reference in New Issue