kou commented on a change in pull request #11735:
URL: https://github.com/apache/arrow/pull/11735#discussion_r752599939
##########
File path: dev/release/verify-release-candidate.sh
##########
@@ -531,16 +531,17 @@ test_integration() {
$INTEGRATION_TEST_ARGS
}
-clone_testing_repositories() {
- # Clone testing repositories if not cloned already
- if [ ! -d "arrow-testing" ]; then
- git clone https://github.com/apache/arrow-testing.git
- fi
- if [ ! -d "parquet-testing" ]; then
- git clone https://github.com/apache/parquet-testing.git
- fi
- export ARROW_TEST_DATA=$PWD/arrow-testing/data
- export PARQUET_TEST_DATA=$PWD/parquet-testing/data
+clone_repositories() {
+ # Clone source and testing repositories if not cloned already
+ if [ ! -d "arrow" ]; then
+ git clone https://github.com/apache/arrow.git
Review comment:
We should use the source archive (`apache-arrow-X.Y.Z.tar.gz`) not the
master to align wheel version with test script version.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]