This is an automated email from the ASF dual-hosted git repository.

wesm pushed a commit to branch maint-0.14.x
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit 67bdf79b3a0cfc00aabbe7c659a0853d32587384
Author: Sutou Kouhei <[email protected]>
AuthorDate: Sat Jun 29 15:09:44 2019 +0900

    ARROW-5787: [Release][Rust] Use local modules to verify RC
    
    Because we don't publish modules to crates.io yet.
    
    Author: Sutou Kouhei <[email protected]>
    
    Closes #4747 from kou/release-verify-rust and squashes the following 
commits:
    
    c424af6b5 <Sutou Kouhei>  Use local modules to verify RC
---
 dev/release/verify-release-candidate.sh | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/dev/release/verify-release-candidate.sh 
b/dev/release/verify-release-candidate.sh
index 159d7dd..4310536 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -458,6 +458,14 @@ test_rust() {
   # we are targeting Rust nightly for releases
   rustup default nightly
 
+  # use local modules because we don't publish modules to crates.io yet
+  sed \
+    -i.bak \
+    -E \
+    -e 's/^arrow = "([^"]*)"/arrow = { version = "\1", path = "..\/arrow" }/g' 
\
+    -e 's/^parquet = "([^"]*)"/parquet = { version = "\1", path = 
"..\/parquet" }/g' \
+    */Cargo.toml
+
   # raises on any warnings
   RUSTFLAGS="-D warnings" cargo build
   cargo test

Reply via email to