Skip to content

Commit

Permalink
Merge pull request #146 from siliconcompiler/disable-zerosoc
Browse files Browse the repository at this point in the history
disable zerosoc until segfaults are resolved on OpenROAD
  • Loading branch information
gadfort authored Nov 1, 2024
2 parents 91c8cd6 + 0051342 commit 7bacf74
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/config/designs.json
Original file line number Diff line number Diff line change
Expand Up @@ -886,11 +886,15 @@
{
"design": "zerosoc_flat",
"remote": false,
"target": null
"target": null,
"skip": "causes segfault after opensta update",
"cache": false
},
{
"design": "zerosoc_hierarchy",
"remote": false,
"target": null
"target": null,
"skip": "causes segfault after opensta update",
"cache": false
}
]
6 changes: 6 additions & 0 deletions scripts/report_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@ def report_skipped(markdown):
with open(jobs_file) as fid:
data = json.load(fid)

for d in data:
if 'target' not in d:
d['target'] = "none"
elif not d['target']:
d['target'] = "none"

data = [d for d in data if 'skip' in d and d['skip']]

cached = [d for d in data if d['cache']]
Expand Down

0 comments on commit 7bacf74

Please sign in to comment.