Skip to content

Commit

Permalink
apacheGH-40716: [Java][Integration] Fix test_package_java in verifica…
Browse files Browse the repository at this point in the history
…tion scripts (apache#40724)

### Rationale for this change

JPMS changed the location of JNI libs in the dist dir.

### What changes are included in this PR?

* Update the dist path in the verification script

### Are these changes tested?

CI

### Are there any user-facing changes?

No
* GitHub Issue: apache#40716

Authored-by: Dane Pitkin <dane@voltrondata.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
  • Loading branch information
danepitkin authored and tolleybot committed May 2, 2024
1 parent 5fdc1b0 commit c06bd3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -642,8 +642,8 @@ test_package_java() {
normalized_arch=x86_64
;;
esac
mkdir -p ${dist_dir}/${normalized_arch}/
mv ${install_dir}/lib/* ${dist_dir}/${normalized_arch}/
mkdir -p ${dist_dir}
mv ${install_dir}/lib/* ${dist_dir}
mvn install \
-Darrow.c.jni.dist.dir=${dist_dir} \
-Parrow-c-data
Expand Down

0 comments on commit c06bd3f

Please sign in to comment.