-
Notifications
You must be signed in to change notification settings - Fork 12
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
chore(release): Add release-only "gitignore bypass" files #1010
base: main
Are you sure you want to change the base?
Changes from all commits
2fb069c
e987621
dcae588
17d3ed7
275e382
577cbdb
e42151e
af59c6a
e3d002c
3f7006f
2e7e0e9
e1f3f45
9623a32
764a084
e9594f7
9dfcfb9
b0d0b8f
7c3b787
425146a
3a6e5fd
2fc1080
a69ce50
8a577b7
9252008
ec1f364
db299d5
66afcbb
daff97f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,26 @@ specification_compliance_report.html | |
*/**/.idea/ | ||
/compliance | ||
/.smithy.lsp.log | ||
*/**/Folder.DotSettings.user | ||
*/**/Folder.DotSettings.user | ||
|
||
# These files are not tracked. | ||
# The release will force-commit these files, then the post-release commit will force-remove them. | ||
# Scripts at /scripts/release will run on all files between START_RELEASE_IGNORED_FILES and END_RELEASE_IGNORED_FILES. | ||
# START_RELEASE_IGNORED_FILES | ||
# Ignore Python .dtr files | ||
**/*py.dtr | ||
# Ignore everything in TestsFromDafny-go | ||
**/TestsFromDafny-go/** | ||
# Ignore everything in ImplementationFromDafny-go... | ||
**/ImplementationFromDafny-go/** | ||
# ... except for files containing "smithygenerated"... | ||
!**/ImplementationFromDafny-go/**/*smithygenerated* | ||
# ... except for files containing "extern" ... | ||
!**/ImplementationFromDafny-go/**/*extern* | ||
# ... except for files named "shim.go" ... | ||
!**/ImplementationFromDafny-go/**/shim.go | ||
# ... except for go.mod ... | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For Kms and Ddb, we also generate There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you mean the wrapped shims for testing local services? I think we commit those. (But we haven't released one yet, since the only place we've committed this is in MPL test vectors, which we've never released.) |
||
!**/ImplementationFromDafny-go/**/go.mod | ||
# ... except for go.sum. | ||
!**/ImplementationFromDafny-go/**/go.sum | ||
# END_RELEASE_IGNORED_FILES |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You might also want to ignore
TestsFromDafny-go
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Got it. Should this always be ignored? Or should we also commit this folder on releases?