Skip to content

Commit f7cf6d4

Browse files
committed
ci: add .duvet/config.toml
1 parent de9e864 commit f7cf6d4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+889
-35
lines changed

.duvet/.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
reports/
2+
# extract requirements on demand
3+
requirements/

.duvet/config.toml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
'$schema' = "https://awslabs.github.io/duvet/config/v0.4.0.json"
2+
3+
[[source]]
4+
pattern = "h3/**/*.rs"
5+
6+
[[specification]]
7+
source = "https://www.rfc-editor.org/rfc/rfc9114"
8+
9+
[report.html]
10+
enabled = true
11+
issue-link = "https://github.com/hyperium/h3/issues"
12+
blob-link = "https://github.com/hyperium/h3/blob/${{ SHA || GITHUB_SHA || 'master' }}"
13+
14+
# Enable snapshots to prevent requirement coverage regressions
15+
[report.snapshot]
16+
enabled = true
File renamed without changes.

.duvet/snapshot.txt

+867
Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

.github/actions/compliance/action.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ name: 'Spec compliance report'
22
description: 'Generate compliance report and publish on Github pages'
33

44
inputs:
5-
extract-script:
6-
description: 'Path to script that extracts compliance requirements'
7-
required: true
85
report-script:
96
description: 'Path to script that generates a compliance report'
107
required: true
@@ -55,14 +52,14 @@ runs:
5552
working-directory: ${{ inputs.h3-dir }}
5653
shell: bash
5754
run: |
58-
${{ inputs.extract-script }}
5955
${{ inputs.report-script }}
6056
6157
# commit only when there are changes
6258
- name: Commit report changes
6359
working-directory: ${{ inputs.h3-dir }}
6460
shell: bash
6561
run: |
62+
cp .duvet/reports/* ci/compliance/
6663
git add ci/compliance/*.html
6764
git diff --staged --quiet || \
6865
git commit -m "${{ github.triggering_actor }}-${SHA}-${{ github.job }}#${{ github.run_number }}"

.github/workflows/CI.yml

-1
Original file line numberDiff line numberDiff line change
@@ -185,5 +185,4 @@ jobs:
185185
- name: Generate compliance report
186186
uses: ./.github/actions/compliance
187187
with:
188-
extract-script: ${{ github.workspace }}/ci/compliance/extract.sh
189188
report-script: ${{ github.workspace }}/ci/compliance/report.sh

ci/compliance/extract.sh

-18
This file was deleted.

ci/compliance/report.sh

+2-12
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,6 @@
22

33
set -e
44

5-
duvet report \
6-
--spec-pattern 'specs/**/*.toml' \
7-
--spec-pattern 'ci/compliance/specs/**/*.toml' \
8-
--source-pattern 'h3/**/*.rs' \
9-
--workspace \
10-
--exclude duvet \
11-
--require-tests false \
12-
--blob-link "https://github.com/hyperium/h3/blob/master" \
13-
--issue-link 'https://github.com/hyperium/h3/issues' \
14-
--no-cargo \
15-
--html ci/compliance/report.html
5+
duvet report
166

17-
echo "compliance report available in 'ci/compliance/report.html'"
7+
echo "compliance report available in '.duvet/reports/report.html'"

0 commit comments

Comments
 (0)