Skip to content

Commit

Permalink
Update verify_release.sh to work with 30.0.0 (#3413)
Browse files Browse the repository at this point in the history
  • Loading branch information
alamb authored Dec 30, 2022
1 parent 9b57621 commit 9398af6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ test_source_distribution() {

(cd arrow && cargo build && cargo test)
(cd arrow-flight && cargo build && cargo test)
# To avoid https://github.com/apache/arrow-rs/issues/3410,
# remove path reference from parquet:
# object_store = { version = "0.5", path = "../object_store", default-features = false, optional = true }
# object_store = { version = "0.5", default-features = false, optional = true }
sed -i -e 's/\(^object_store.*\)\(path = ".*", \)/\1/g' parquet/Cargo.toml
(cd parquet && cargo build && cargo test)
(cd parquet_derive && cargo build && cargo test)

Expand Down

0 comments on commit 9398af6

Please sign in to comment.