This is an automated email from the ASF dual-hosted git repository.
dongjoon pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/spark.git
The following commit(s) were added to refs/heads/master by this push:
new 335046236b16 [SPARK-50896][INFRA] Add Daily Maven CI to branch-4.0
335046236b16 is described below
commit 335046236b1612b4bb9ed96f6e43f9c7c35e500e
Author: Dongjoon Hyun <[email protected]>
AuthorDate: Mon Jan 20 17:13:05 2025 -0800
[SPARK-50896][INFRA] Add Daily Maven CI to branch-4.0
### What changes were proposed in this pull request?
This PR aims to add daily `Maven CI` to `branch-4.0.`
### Why are the changes needed?
The default build tool of Apache Spark is `Apache Maven`.
To ensure `Maven` build and test capability in Apache Spark 4.0.x.
### Does this PR introduce _any_ user-facing change?
No, this is an infra-only PR.
### How was this patch tested?
Manual review.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #49578 from dongjoon-hyun/SPARK-50896.
Authored-by: Dongjoon Hyun <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_branch40_maven.yml | 35 ++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/.github/workflows/build_branch40_maven.yml
b/.github/workflows/build_branch40_maven.yml
new file mode 100644
index 000000000000..1523e6e4f49d
--- /dev/null
+++ b/.github/workflows/build_branch40_maven.yml
@@ -0,0 +1,35 @@
+#
+# 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.
+#
+
+name: "Build / Maven (branch-4.0, Scala 2.13, Hadoop 3, JDK 17)"
+
+on:
+ schedule:
+ - cron: '0 14 * * *'
+ workflow_dispatch:
+
+jobs:
+ run-build:
+ permissions:
+ packages: write
+ name: Run
+ uses: ./.github/workflows/maven_test.yml
+ if: github.repository == 'apache/spark'
+ with:
+ branch: branch-4.0
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]