-
Notifications
You must be signed in to change notification settings - Fork 151
Enable collation of all license files into pre-built binaries #1679
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
base: main
Are you sure you want to change the base?
Enable collation of all license files into pre-built binaries #1679
Conversation
|
Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually. Contributors can view more details about this message here. |
|
/okay to test |
6e69111 to
c64c622
Compare
|
/okay to test |
c64c622 to
77b4bd8
Compare
|
/okay to test |
77b4bd8 to
9484455
Compare
|
/okay to test |
|
Waiting on rapidsai/shared-workflows#488 before we can merge |
9484455 to
a143845
Compare
a143845 to
4a0897b
Compare
| cat SPDX_FRAGMENT_LICENSE_FILES >> c/build/install/LICENSE | ||
|
|
||
| python ./tool/find_and_copy_license_files.py "." > DEP_LICENSE_FILES | ||
| cat DEP_LICENSE_FILES >> c/build/install/LICENSE |
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.
are you concerned about duplicating any entries here? Should this be more of an update operation than an append?
Why not have the python script do the output handling directly? If it's just a matter of not wanting to deal with python, I can help you.
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.
are you concerned about duplicating any entries here? Should this be more of an update operation than an append?
I wrote it this way so that if you needed to run the build locally you could see which tool added each line to the mega license file. We could have the python script pipe directly to c/build/install/LICENSE if we wanted instead.
Why not have the python script do the output handling directly? If it's just a matter of not wanting to deal with python, I can help you.
Yes. Happy to have help if we want to have python append/write to explicitly provided files instead
No description provided.