Skip to content

Commit 34310e6

Browse files
kiszkkou
authored andcommitted
ARROW-12419: [Java] Remove to download flatc binary for s390x
This PR is a follow-up of #10058. #10058 avoids executing flatc during the Java build process by statically generating Java files from the schema. Now, flatc is not necessary. Since flatc for s390x is explicitly downloaded in a script, we can drop this download. Closes #10067 from kiszk/ARROW-12419 Authored-by: Kazuaki Ishizaki <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent fdd3907 commit 34310e6

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

ci/scripts/java_build.sh

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,6 @@ if [[ "$(uname -s)" == "Linux" ]] && [[ "$(uname -m)" == "s390x" ]]; then
3030
wget="wget"
3131
bintray_base_url="https://dl.bintray.com/apache/arrow"
3232

33-
bintray_dir="flatc-binary"
34-
group="com.github.icexelloss"
35-
artifact="flatc-linux-s390_64"
36-
ver="1.9.0"
37-
extension="exe"
38-
target=${artifact}-${ver}.${extension}
39-
${wget} ${bintray_base_url}/${bintray_dir}/${ver}/${target}
40-
${mvn_install} -DgroupId=${group} -DartifactId=${artifact} -Dversion=${ver} -Dpackaging=${extension} -Dfile=$(pwd)/${target}
41-
4233
bintray_dir="protoc-binary"
4334
group="com.google.protobuf"
4435
artifact="protoc"

0 commit comments

Comments
 (0)