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

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new e4770b2  ARROW-1917: Fixes to enable verify-release-candidate.sh to 
work for 0.8.0
e4770b2 is described below

commit e4770b286eb5e08697dfceb1ff59bef672a29ed7
Author: Wes McKinney <[email protected]>
AuthorDate: Tue Dec 12 17:18:18 2017 -0500

    ARROW-1917: Fixes to enable verify-release-candidate.sh to work for 0.8.0
    
    Author: Wes McKinney <[email protected]>
    
    Closes #1417 from wesm/ARROW-1917 and squashes the following commits:
    
    e394f301 [Wes McKinney] Disable integration portion of JS. Run integration 
tests earlier
    363c4bea [Wes McKinney] Set GI_TYPELIB_PATH when testing glib in 
verify-release-candidate-sh
    420a5716 [Wes McKinney] [Java] Change scm git link in pom.xml
---
 dev/release/verify-release-candidate.sh | 25 +++++++++++++++----------
 java/pom.xml                            |  4 ++--
 2 files changed, 17 insertions(+), 12 deletions(-)

diff --git a/dev/release/verify-release-candidate.sh 
b/dev/release/verify-release-candidate.sh
index 7c5e7fd..f33211e 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -165,7 +165,9 @@ test_glib() {
   make -j$NPROC
   make install
 
-  NO_MAKE=yes test/run-test.sh
+  GI_TYPELIB_PATH=$ARROW_HOME/lib/girepository-1.0 \
+                 NO_MAKE=yes \
+                 test/run-test.sh
 
   popd
 }
@@ -174,15 +176,17 @@ test_js() {
   pushd js
   npm install
   # clean, lint, and build JS source
-  npm run clean:all
-  npm run lint
-  npm run build
+  npx run-s clean:all lint build
+  npm run test
+
   # create initial integration test data
-  npm run create:testdata
+  # npm run create:testdata
+
   # run once to write the snapshots
-  npm test -- -t ts -u --integration
+  # npm test -- -t ts -u --integration
+
   # run again to test all builds against the snapshots
-  npm test -- --integration
+  # npm test -- --integration
   popd
 }
 
@@ -238,13 +242,14 @@ fetch_archive $DIST_NAME
 tar xvzf ${DIST_NAME}.tar.gz
 cd ${DIST_NAME}
 
+test_package_java
 setup_miniconda
 test_and_install_cpp
+test_integration
+test_glib
 install_parquet_cpp
 test_python
-test_glib
-test_package_java
-test_integration
+
 test_js
 
 echo 'Release candidate looks good!'
diff --git a/java/pom.xml b/java/pom.xml
index 162c534..922048c 100644
--- a/java/pom.xml
+++ b/java/pom.xml
@@ -41,8 +41,8 @@
   </properties>
 
   <scm>
-    
<connection>scm:git:https://git-wip-us.apache.org/repos/asf/arrow.git</connection>
-    
<developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/arrow.git</developerConnection>
+    <connection>scm:git:https://github.com/apache/arrow.git</connection>
+    
<developerConnection>scm:git:https://github.com/apache/arrow.git</developerConnection>
     <url>https://github.com/apache/arrow</url>
     <tag>apache-arrow-0.7.1</tag>
   </scm>

-- 
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].

Reply via email to