-
Notifications
You must be signed in to change notification settings - Fork 429
Use smaller Plarform-Language packages when analyzing only one language #172
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
Closed
Closed
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
e4c39c9
Add CI for testing small bundles
marcogario 408e376
Add test for bundle with platform and language
marcogario 7951f91
Add logic to download codeql platform-language pkg
marcogario 3f5bb98
# This is a combination of 4 commits.
marcogario d3d7dd4
# This is a combination of 4 commits.
marcogario 57b0b7f
Add logic to download codeql platform-language pkg
marcogario 588a28d
Merge remote-tracking branch 'origin/main' into platform_lang_pkg
marcogario 7b29d2e
Move language functions in dedicated package
marcogario d093fc0
Remove old workflow
marcogario 0ca7a34
CI: Add test for small-bundles
marcogario b9e8fa6
Merge remote-tracking branch 'origin/main' into platform_lang_pkg
marcogario 4d836f4
fix linter
marcogario b9f08d9
Fix early termination
marcogario 7f2fa9c
Merge branch 'main' into platform_lang_pkg
marcogario c25320c
Improve integration test
marcogario 1157017
Assume small bundles are available in the official repo
marcogario f8e9262
Merge remote-tracking branch 'origin/main' into platform_lang_pkg
marcogario 8547a75
Disable dependency in CI
marcogario 11e79a3
Fix test for toolcache
marcogario 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
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.
Does this need some check after running the actions to make sure it actually downloaded the right bundles. Currently it could download the full thing each time and still pass.
You should be able to look inside the toolcache directory and see what it has downloaded. You'll find it under
/opt/hostedtoolcache(at least on linux) or you can use$AGENT_TOOLSDIRECTORY(which might work on all operating systems).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.
The idea was not to require this, although I can see how it would be good to test this in a non-failing way.
I did not want to make the bundle-release process more complex, so these tests should pass with only the main bundle (fallback behavior). I see how outputting a message that we used the smaller bundler would be useful for validation.