Skip to content

Commit 40fd8ff

Browse files
committed
Fix copilot comments
1 parent 82668c0 commit 40fd8ff

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/regress.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -305,9 +305,6 @@ jobs:
305305

306306
- run: git submodule update --init docs/docs-resources external/riscv-unified-db
307307

308-
- name: Pull Container
309-
run: docker pull riscvintl/riscv-docs-base-container-image:latest
310-
311308
- name: Build CTP
312309
run: cd docs/ctp && make -j2
313310

@@ -319,9 +316,6 @@ jobs:
319316

320317
- run: git submodule update --init docs/docs-resources
321318

322-
- name: Pull Container
323-
run: docker pull riscvintl/riscv-docs-base-container-image:latest
324-
325319
- name: Build CRD
326320
run: cd docs/crd && make -j2
327321

.github/workflows/release-docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ on:
99
- "docs/**"
1010
- "generators/ctp/**"
1111
- "testplans/**"
12+
- "coverpoints/norm/**"
13+
- "coverpoints/param/**"
1214
- ".github/workflows/release-docs.yml"
1315

1416
permissions:

generators/ctp/generate_param_table.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,8 @@ def main() -> None:
474474
if args.norm_dir:
475475
norm_dir = Path(args.norm_dir)
476476
if not norm_dir.exists():
477-
norm_dir = None
477+
print(f"Error: specified norm directory does not exist: {norm_dir}", file=sys.stderr)
478+
sys.exit(2)
478479
else:
479480
script_dir = Path(__file__).resolve().parent
480481
repo_root_candidate = script_dir.parent.parent

0 commit comments

Comments
 (0)