-
Notifications
You must be signed in to change notification settings - Fork 148
Update Go Ort #3469
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
Merged
Update Go Ort #3469
Changes from 34 commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
6dfabf6
Ort add enabledPackageManagers
prateek-kumar-improving 869cefa
Merge branch 'main' into go/ort-update
prateek-kumar-improving 6ea6a5b
Go: Update Go package manager in ort.yml file
prateek-kumar-improving 97a7d8d
Go: .ort.yml file added
prateek-kumar-improving b3e0872
Merge branch 'main' into go/ort-update
prateek-kumar-improving 4f29f20
Go: Update package manager
prateek-kumar-improving 6fd19fc
Go: Add generate protobuf for go
prateek-kumar-improving 1a11662
Go: Add generate protobuf for go
prateek-kumar-improving 8310cdb
Go: Add generate protobuf for go
prateek-kumar-improving 2f2a1eb
Go: Update ort.yml
prateek-kumar-improving 84bc210
Go: Update ort.yml GO step
prateek-kumar-improving 1c15eea
Merge branch 'main' into go/ort-update
prateek-kumar-improving 3672f50
result file output added
prateek-kumar-improving 23754b2
update ort.yml
prateek-kumar-improving 2f42d81
Update CHANGELOG.md
prateek-kumar-improving 32fec86
update ort.yml
prateek-kumar-improving 02013f6
Merge branch 'main' into go/ort-update
prateek-kumar-improving aa3f264
Go: Install protobuf
prateek-kumar-improving 4beded2
Merge branch 'main' into go/ort-update
prateek-kumar-improving 44ed86a
Go: update ort
prateek-kumar-improving ff728f6
Merge branch 'main' into go/ort-update
prateek-kumar-improving de5e202
Merge branch 'main' into go/ort-update
prateek-kumar-improving 9ac29be
Merge branch 'main' into go/ort-update
prateek-kumar-improving 4fa3b3f
Merge branch 'main' into go/ort-update
prateek-kumar-improving ad3d403
Add ORT for FFI
prateek-kumar-improving 208a923
Add ORT for FFI
prateek-kumar-improving 49cd90d
Merge branch 'main' into go/ort-update
prateek-kumar-improving d8bbf3a
Go: Add .ort.yml for ffi
prateek-kumar-improving aa53474
Merge branch 'main' into go/ort-update
prateek-kumar-improving ec9f006
Merge attributions
Yury-Fridlyand 59bd536
Merge branch 'main' into go/ort-update
prateek-kumar-improving 27185e3
Merge branch 'main' into go/ort-update
prateek-kumar-improving ee55f3c
cleanup
Yury-Fridlyand e20aeac
exceptions
Yury-Fridlyand a7551e7
Merge branch 'main' into go/ort-update
avifenesh d51483b
minor fixes
Yury-Fridlyand f5c97a6
typo fix
Yury-Fridlyand 053853a
typo fix
Yury-Fridlyand 97a3b42
typo fix
Yury-Fridlyand 988de3f
Manually update attribution file.
Yury-Fridlyand b7cb1ae
hacky hack
Yury-Fridlyand f30a7d2
Add comment
Yury-Fridlyand 1aa7ae6
Merge branch 'release-2.0' into go/ort-update
ikolomi 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
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,11 @@ | ||
| excludes: | ||
| scopes: | ||
| - pattern: "devDependencies" | ||
| reason: "DEV_DEPENDENCY_OF" | ||
| comment: "Packages for development only." | ||
| - pattern: "build-dependencies" | ||
| reason: "BUILD_DEPENDENCY_OF" | ||
| comment: "Packages for building the code only." | ||
| - pattern: "dev-dependencies" | ||
| reason: "DEV_DEPENDENCY_OF" | ||
| comment: "Packages for development only." |
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,30 @@ | ||
| excludes: | ||
| scopes: | ||
| - pattern: "//indirect" | ||
| reason: "DEV_DEPENDENCY_OF" | ||
| comment: "Indirect dependencies used for development only." | ||
| - pattern: "github.com/stretchr/testify|github.com/google/uuid" | ||
| reason: "TEST_DEPENDENCY_OF" | ||
| comment: "Testing framework not included in production code." | ||
| paths: | ||
| - pattern: "integTest/**" | ||
| reason: "TEST_OF" | ||
| comment: "Integration test files not included in production code." | ||
| - pattern: "benchmarks/**" | ||
| reason: "TEST_TOOL_OF" | ||
| comment: "Benchmark files used for performance testing only." | ||
| - pattern: "examples/**" | ||
| reason: "EXAMPLE_OF" | ||
| comment: "Example code not included in production code." | ||
| - pattern: ".*" | ||
| reason: "BUILD_TOOL_OF" | ||
| comment: "Hidden files used for build configuration." | ||
| - pattern: "Makefile" | ||
| reason: "BUILD_TOOL_OF" | ||
| comment: "Build configuration file." | ||
| - pattern: "DEVELOPER.md" | ||
| reason: "DOCUMENTATION_OF" | ||
| comment: "Developer documentation." | ||
| - pattern: "rustbin/**" | ||
| reason: "BUILD_TOOL_OF" | ||
| comment: "Rust binary files used for building only." |
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.