-
Notifications
You must be signed in to change notification settings - Fork 0
add duvet everywhere #28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
seebees
merged 12 commits into
fireegg-test-servers
from
seebees/fireegg-duvet-artifacts
Sep 30, 2025
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
2a217b3
add duvet everywhere
seebees 12b8d74
update gitignore
seebees 480e2c3
get the right branch
seebees 09e5c71
run it as its own test
seebees ffece3e
remove
seebees e1dfa85
ignore bin
seebees 7d3addb
Latest things
seebees f3d4b5b
adding duvet instructions
seebees 881b20d
updates
seebees afd449e
instructions
seebees dafb98a
Nice update
seebees 10d07a0
Merge branch 'fireegg-test-servers' into seebees/fireegg-duvet-artifacts
seebees File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,45 @@ | ||
| name: Run Tests | ||
|
|
||
| on: | ||
| workflow_call: | ||
| # Optional inputs that can be provided when calling this workflow | ||
|
|
||
| jobs: | ||
| test: | ||
| runs-on: macos-latest | ||
| permissions: | ||
| id-token: write | ||
| contents: read | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| with: | ||
| submodules: true | ||
| token: ${{ secrets.PAT_FOR_PRIVATE_RUBY }} | ||
|
|
||
| - name: Setup Rust toolchain | ||
| uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
| with: | ||
| toolchain: stable | ||
|
|
||
| - name: Clone duvet repository | ||
| run: git clone https://github.com/awslabs/duvet.git /tmp/duvet | ||
|
|
||
| - name: Build and install duvet | ||
| run: | | ||
| cd /tmp/duvet | ||
| cargo xtask build | ||
| cargo install --path ./duvet | ||
|
|
||
| - name: Run duvet | ||
| if: always() | ||
| run: cd test-server && make duvet | ||
|
|
||
| - name: Upload duvet reports | ||
| if: always() | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: reports | ||
| include-hidden-files: true | ||
| path: test-server/*-server/.duvet/reports/report.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| reports/ | ||
| requirements/ | ||
| specification/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| '$schema' = "https://awslabs.github.io/duvet/config/v0.4.0.json" | ||
|
|
||
| [[source]] | ||
| pattern = "aws-sdk-cpp/src/aws-cpp-sdk-s3-encryption/**/*.cpp" | ||
|
|
||
| [[source]] | ||
| pattern = "aws-sdk-cpp/src/aws-cpp-sdk-s3-encryption/**/*.h" | ||
|
|
||
| # Include required specifications here | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/content-metadata.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/metadata-strategy.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/encryption.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/key-derivation.md" | ||
|
|
||
| [report.html] | ||
| enabled = true | ||
|
|
||
| # Enable snapshots to prevent requirement coverage regressions | ||
| [report.snapshot] | ||
| enabled = false | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| reports/ | ||
| requirements/ | ||
| specification/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| '$schema' = "https://awslabs.github.io/duvet/config/v0.4.0.json" | ||
|
|
||
| [[source]] | ||
| pattern = "**/*.go" | ||
|
|
||
| # Include required specifications here | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/content-metadata.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/metadata-strategy.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/encryption.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/key-derivation.md" | ||
|
|
||
| [report.html] | ||
| enabled = true | ||
|
|
||
| # Enable snapshots to prevent requirement coverage regressions | ||
| [report.snapshot] | ||
| enabled = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| reports/ | ||
| requirements/ | ||
| specification/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| '$schema' = "https://awslabs.github.io/duvet/config/v0.4.0.json" | ||
|
|
||
| [[source]] | ||
| pattern = "**/*.java" | ||
|
|
||
| # Include required specifications here | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/content-metadata.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/metadata-strategy.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/encryption.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/key-derivation.md" | ||
|
|
||
| [report.html] | ||
| enabled = true | ||
|
|
||
| # Enable snapshots to prevent requirement coverage regressions | ||
| [report.snapshot] | ||
| enabled = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| bin/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| reports/ | ||
| requirements/ | ||
| specification/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,21 @@ | ||
| '$schema' = "https://awslabs.github.io/duvet/config/v0.4.0.json" | ||
|
|
||
| [[source]] | ||
| pattern = "**/*.cs" | ||
|
|
||
| # Include required specifications here | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/content-metadata.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/metadata-strategy.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/encryption.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/key-derivation.md" | ||
|
|
||
| [report.html] | ||
| enabled = true | ||
|
|
||
| # Enable snapshots to prevent requirement coverage regressions | ||
| [report.snapshot] | ||
| enabled = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| reports/ | ||
| requirements/ | ||
| specification/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| '$schema' = "https://awslabs.github.io/duvet/config/v0.4.0.json" | ||
|
|
||
| [[source]] | ||
| pattern = "local-php-sdk/src/S3/**/*.php" | ||
|
josecorella marked this conversation as resolved.
|
||
|
|
||
| [[source]] | ||
| pattern = "local-php-sdk/src/Crypto/**/*.php" | ||
|
|
||
| # Include required specifications here | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/content-metadata.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/metadata-strategy.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/encryption.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/key-derivation.md" | ||
|
|
||
| [report.html] | ||
| enabled = true | ||
|
|
||
| # Enable snapshots to prevent requirement coverage regressions | ||
| [report.snapshot] | ||
| enabled = false | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| reports/ | ||
| requirements/ | ||
| specification/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| '$schema' = "https://awslabs.github.io/duvet/config/v0.4.0.json" | ||
|
|
||
| [[source]] | ||
| pattern = "local-php-sdk/src/S3/**/*.php" | ||
|
josecorella marked this conversation as resolved.
|
||
|
|
||
| [[source]] | ||
| pattern = "local-php-sdk/src/Crypto/**/*.php" | ||
|
|
||
| # Include required specifications here | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/content-metadata.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/metadata-strategy.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/encryption.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/key-derivation.md" | ||
|
|
||
| [report.html] | ||
| enabled = true | ||
|
|
||
| # Enable snapshots to prevent requirement coverage regressions | ||
| [report.snapshot] | ||
| enabled = false | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| reports/ | ||
| requirements/ | ||
| specification/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| '$schema' = "https://awslabs.github.io/duvet/config/v0.4.0.json" | ||
|
|
||
| [[source]] | ||
| pattern = "**/*.py" | ||
| comment-style = { meta = "##=", content = "##%" } | ||
|
|
||
| # Include required specifications here | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/content-metadata.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/data-format/metadata-strategy.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/encryption.md" | ||
| [[specification]] | ||
| source = "../specification/s3-encryption/key-derivation.md" | ||
|
|
||
| [report.html] | ||
| enabled = true | ||
|
|
||
| # Enable snapshots to prevent requirement coverage regressions | ||
| [report.snapshot] | ||
| enabled = false |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,3 @@ | ||
| reports/ | ||
| requirements/ | ||
| requirements/ | ||
| specification/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.