This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch active_release
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/active_release by this push:
new 54023c8 Remove unpassable cargo publish check from
verify-release-candidate.sh (#882) (#949)
54023c8 is described below
commit 54023c8a5543c9f9fa4955afa01189029f3e96f5
Author: Andrew Lamb <[email protected]>
AuthorDate: Mon Nov 15 13:58:16 2021 -0500
Remove unpassable cargo publish check from verify-release-candidate.sh
(#882) (#949)
---
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