Skip to content

Commit

Permalink
Merge pull request #671 from antmicro/fix-ci-issues
Browse files Browse the repository at this point in the history
Fix ci issues
  • Loading branch information
kgugala authored Oct 15, 2024
2 parents 9c049e2 + 622e17b commit 230bf44
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ jobs:
Docs:
runs-on: ubuntu-latest
name: '📓 Docs'
permissions:
contents: write
steps:

- name: 🧰 Checkout
Expand Down
12 changes: 7 additions & 5 deletions f4pga/utils/xc7/create_place_constraints.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down
8 changes: 5 additions & 3 deletions readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 230bf44

Please sign in to comment.