This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 898924f Remove unpassable cargo publish check from
verify-release-candidate.sh (#882)
898924f is described below
commit 898924f52446f7c4a9d1325acadd1a88cd587d03
Author: Andrew Lamb <[email protected]>
AuthorDate: Fri Oct 29 09:58:43 2021 -0400
Remove unpassable cargo publish check from verify-release-candidate.sh
(#882)
---
dev/release/verify-release-candidate.sh | 12 ++----------
1 file changed, 2 insertions(+), 10 deletions(-)
diff --git a/dev/release/verify-release-candidate.sh
b/dev/release/verify-release-candidate.sh
index 6501aa0..26f6456 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -139,17 +139,9 @@ test_source_distribution() {
cargo publish --dry-run
popd
- pushd arrow-flight
- cargo publish --dry-run
- popd
+ # Note can't verify parquet/arrow-flight/parquet-derive until arrow is
actually published
+ # as they depend on arrow
- pushd parquet
- cargo publish --dry-run
- popd
-
- pushd parquet_derive
- cargo publish --dry-run
- popd
}
TEST_SUCCESS=no