Is your feature request related to a problem or challenge?
this PR
introduced symlinks to notice/license.txt for our published crates. it would be good to enforce this in a CI check since I believe we have had new crates since which are missing these files now
Describe the solution you'd like
add a CI check to enforce the presence of these files, and fix any violations
we technically only need to care about published crates:
|
Rust Arrow Crates: |
|
|
|
```shell |
|
(cd arrow-buffer && cargo publish) |
|
(cd arrow-schema && cargo publish) |
|
(cd arrow-data && cargo publish) |
|
(cd arrow-array && cargo publish) |
|
(cd arrow-select && cargo publish) |
|
(cd arrow-ord && cargo publish) |
|
(cd arrow-cast && cargo publish) |
|
(cd arrow-ipc && cargo publish) |
|
(cd arrow-csv && cargo publish) |
|
(cd arrow-json && cargo publish) |
|
(cd arrow-avro && cargo publish) |
|
(cd arrow-arith && cargo publish) |
|
(cd arrow-string && cargo publish) |
|
(cd arrow-row && cargo publish) |
|
(cd arrow-pyarrow && cargo publish) |
|
(cd arrow && cargo publish) |
|
(cd arrow-avro && cargo publish) |
|
(cd arrow-flight && cargo publish) |
|
(cd parquet-variant && cargo publish) |
|
(cd parquet-variant-json && cargo publish) |
|
(cd parquet-variant-compute && cargo publish) |
|
(cd parquet-geospatial && cargo publish) |
|
(cd parquet && cargo publish) |
|
(cd parquet_derive && cargo publish) |
|
(cd arrow-integration-test && cargo publish) |
|
``` |
but if its easier to apply to all crates then theres no harm in that
Describe alternatives you've considered
No response
Additional context
No response
Is your feature request related to a problem or challenge?
this PR
introduced symlinks to notice/license.txt for our published crates. it would be good to enforce this in a CI check since I believe we have had new crates since which are missing these files now
Describe the solution you'd like
add a CI check to enforce the presence of these files, and fix any violations
we technically only need to care about published crates:
arrow-rs/dev/release/README.md
Lines 212 to 240 in 12091af
but if its easier to apply to all crates then theres no harm in that
Describe alternatives you've considered
No response
Additional context
No response