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

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


The following commit(s) were added to refs/heads/master by this push:
     new 628236e2e8e [MINOR] Add build scripts for new bundle validation images 
(#11683)
628236e2e8e is described below

commit 628236e2e8ebf0110e875b4a70ae3ea5d6c5436d
Author: Y Ethan Guo <[email protected]>
AuthorDate: Wed Jul 24 15:52:50 2024 -0700

    [MINOR] Add build scripts for new bundle validation images (#11683)
---
 .../base/build_flink1146hive313spark331.sh         | 27 +++++++++++++++++++++
 .../base/build_flink1153hive313spark334.sh         | 27 +++++++++++++++++++++
 .../base/build_flink1162hive313spark343.sh         | 27 +++++++++++++++++++++
 .../base/build_flink1170hive313spark351.sh         | 27 +++++++++++++++++++++
 .../base/build_flink1180hive313spark351scala213.sh | 28 ++++++++++++++++++++++
 5 files changed, 136 insertions(+)

diff --git a/packaging/bundle-validation/base/build_flink1146hive313spark331.sh 
b/packaging/bundle-validation/base/build_flink1146hive313spark331.sh
new file mode 100755
index 00000000000..540481baaf9
--- /dev/null
+++ b/packaging/bundle-validation/base/build_flink1146hive313spark331.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+docker build \
+ --build-arg HIVE_VERSION=3.1.3 \
+ --build-arg FLINK_VERSION=1.14.6 \
+ --build-arg SPARK_VERSION=3.3.1 \
+ --build-arg SPARK_HADOOP_VERSION=2 \
+ --build-arg HADOOP_VERSION=2.7.7 \
+ -t hudi-ci-bundle-validation-base:flink1146hive313spark331 .
+docker image tag hudi-ci-bundle-validation-base:flink1146hive313spark331 
apachehudi/hudi-ci-bundle-validation-base:flink1146hive313spark331
diff --git a/packaging/bundle-validation/base/build_flink1153hive313spark334.sh 
b/packaging/bundle-validation/base/build_flink1153hive313spark334.sh
new file mode 100755
index 00000000000..3bf09cbc4ab
--- /dev/null
+++ b/packaging/bundle-validation/base/build_flink1153hive313spark334.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+docker build \
+ --build-arg HIVE_VERSION=3.1.3 \
+ --build-arg FLINK_VERSION=1.15.3 \
+ --build-arg SPARK_VERSION=3.3.4 \
+ --build-arg SPARK_HADOOP_VERSION=2 \
+ --build-arg HADOOP_VERSION=2.7.7 \
+ -t hudi-ci-bundle-validation-base:flink1153hive313spark334 .
+docker image tag hudi-ci-bundle-validation-base:flink1153hive313spark334 
apachehudi/hudi-ci-bundle-validation-base:flink1153hive313spark334
diff --git a/packaging/bundle-validation/base/build_flink1162hive313spark343.sh 
b/packaging/bundle-validation/base/build_flink1162hive313spark343.sh
new file mode 100755
index 00000000000..a7155cab911
--- /dev/null
+++ b/packaging/bundle-validation/base/build_flink1162hive313spark343.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+docker build \
+ --build-arg HIVE_VERSION=3.1.3 \
+ --build-arg FLINK_VERSION=1.16.2 \
+ --build-arg SPARK_VERSION=3.4.3 \
+ --build-arg SPARK_HADOOP_VERSION=3 \
+ --build-arg HADOOP_VERSION=3.3.5 \
+ -t hudi-ci-bundle-validation-base:flink1162hive313spark343 .
+docker image tag hudi-ci-bundle-validation-base:flink1162hive313spark343 
apachehudi/hudi-ci-bundle-validation-base:flink1162hive313spark343
diff --git a/packaging/bundle-validation/base/build_flink1170hive313spark351.sh 
b/packaging/bundle-validation/base/build_flink1170hive313spark351.sh
new file mode 100755
index 00000000000..dea2ef90770
--- /dev/null
+++ b/packaging/bundle-validation/base/build_flink1170hive313spark351.sh
@@ -0,0 +1,27 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+docker build \
+ --build-arg HIVE_VERSION=3.1.3 \
+ --build-arg FLINK_VERSION=1.17.0 \
+ --build-arg SPARK_VERSION=3.5.1 \
+ --build-arg SPARK_HADOOP_VERSION=3 \
+ --build-arg HADOOP_VERSION=3.3.5 \
+ -t hudi-ci-bundle-validation-base:flink1170hive313spark351 .
+docker image tag hudi-ci-bundle-validation-base:flink1170hive313spark351 
apachehudi/hudi-ci-bundle-validation-base:flink1170hive313spark351
diff --git 
a/packaging/bundle-validation/base/build_flink1180hive313spark351scala213.sh 
b/packaging/bundle-validation/base/build_flink1180hive313spark351scala213.sh
new file mode 100755
index 00000000000..615e097abb3
--- /dev/null
+++ b/packaging/bundle-validation/base/build_flink1180hive313spark351scala213.sh
@@ -0,0 +1,28 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+docker build \
+ --build-arg HIVE_VERSION=3.1.3 \
+ --build-arg FLINK_VERSION=1.18.0 \
+ --build-arg SPARK_VERSION=3.5.1 \
+ --build-arg SPARK_HADOOP_VERSION=3 \
+ --build-arg HADOOP_VERSION=3.3.5 \
+ --build-arg SCALA_VERSION=2.13 \
+ -t hudi-ci-bundle-validation-base:flink1180hive313spark351scala213 .
+docker image tag 
hudi-ci-bundle-validation-base:flink1180hive313spark351scala213 
apachehudi/hudi-ci-bundle-validation-base:flink1180hive313spark351scala213

Reply via email to