Skip to content

Commit

Permalink
[SPARK-50896][INFRA] Add Daily Maven CI to branch-4.0
Browse files Browse the repository at this point in the history
### 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]>
  • Loading branch information
dongjoon-hyun committed Jan 21, 2025
1 parent 07aa4ff commit 3350462
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/build_branch40_maven.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3350462

Please sign in to comment.