Skip to content

Commit 65553aa

Browse files
committed
[ci] Enable verible lint for Darjeeling
Signed-off-by: Robert Schilling <[email protected]>
1 parent b16c1a7 commit 65553aa

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,12 +121,18 @@ jobs:
121121
run: ./bazelisk.sh test //quality:buildifier_check
122122
- name: Vendored files
123123
run: ./ci/scripts/check-vendoring.sh
124-
- name: Verible RTL
124+
- name: Verible RTL earlgrey
125125
run: ./ci/scripts/verible-lint.sh rtl earlgrey
126-
- name: Verible DV
126+
- name: Verible DV earlgrey
127127
run: ./ci/scripts/verible-lint.sh dv earlgrey
128-
- name: Verible FPV
128+
- name: Verible FPV earlgrey
129129
run: ./ci/scripts/verible-lint.sh fpv earlgrey
130+
- name: Verible RTL darjeeling
131+
run: ./ci/scripts/verible-lint.sh rtl darjeeling
132+
- name: Verible DV darjeeling
133+
run: ./ci/scripts/verible-lint.sh dv darjeeling
134+
- name: Verible FPV darjeeling
135+
run: ./ci/scripts/verible-lint.sh fpv darjeeling
130136
- name: Validate alert classification for Earl Grey
131137
run: ./ci/scripts/validate_alert_classification.py hw/top_earlgrey/ip_autogen/alert_handler/data/top_earlgrey_alert_handler.ipconfig.hjson "$(realpath hw/top_earlgrey/data/otp/otp_ctrl_img_owner_sw_cfg.hjson)"
132138
- name: Validate alert classification for Darjeeling

ci/jobs/slow-lint.sh

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,20 @@ bazel test //quality:buildifier_check --test_output=streamed
2929
echo "### Check vendored directories are up-to-date"
3030
ci/scripts/check-vendoring.sh
3131

32-
echo -e "\n### Style-Lint RTL Verilog source files with Verible"
32+
echo -e "\n### Style-Lint RTL Verilog source files with Verible for earlgrey"
3333
ci/scripts/verible-lint.sh rtl earlgrey
3434

35-
echo -e "\n### Style-Lint DV Verilog source files with Verible"
35+
echo -e "\n### Style-Lint DV Verilog source files with Verible for earlgrey"
3636
ci/scripts/verible-lint.sh dv earlgrey
3737

38-
echo -e "\n### Style-Lint FPV Verilog source files with Verible"
38+
echo -e "\n### Style-Lint FPV Verilog source files with Verible for earlgrey"
3939
ci/scripts/verible-lint.sh fpv earlgrey
40+
41+
echo -e "\n### Style-Lint RTL Verilog source files with Verible for darjeeling"
42+
ci/scripts/verible-lint.sh rtl darjeeling
43+
44+
echo -e "\n### Style-Lint DV Verilog source files with Verible for darjeeling"
45+
ci/scripts/verible-lint.sh dv darjeeling
46+
47+
echo -e "\n### Style-Lint FPV Verilog source files with Verible for darjeeling"
48+
ci/scripts/verible-lint.sh fpv darjeeling

0 commit comments

Comments
 (0)