Skip to content

Commit b8cf1dc

Browse files
Build issues lists (Disposition of Comments) in CI
Run bikeshed issues-list on all .bsi and issues-*.txt source files to regenerate the Disposition of Comments HTML pages. Files that are not valid issues-list input are silently skipped. Relates to #12054
1 parent 2ff7cbc commit b8cf1dc

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/build-specs.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,12 @@ jobs:
5757
SHORT_DATE="$(date --date=@"$TIMESTAMP" --utc +%F)"
5858
bikeshed -f spec "$file" "${file%Overview.bs}index.html" --md-date="$SHORT_DATE" --md-Text-Macro="BUILTBYGITHUBCI foo"
5959
done
60+
- name: Build issues lists
61+
run: |
62+
for file in ./**/*.bsi ./**/issues-*.txt; do
63+
echo " $file"
64+
bikeshed issues-list "$file" || true
65+
done
6066
- name: Build index & symlinks
6167
run: python ./bin/build-index.py
6268
- run: rm -rf ./.git{,attributes,ignore}

0 commit comments

Comments
 (0)