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