Skip to content

Commit 04f862a

Browse files
committed
[SPARK-51017][INFRA] Add Daily PyPy3.10 GitHub Action Job for branch-4.0
### What changes were proposed in this pull request? This PR aims to add Daily PyPy3.10 GitHub Action Job for `branch-4.0` ### Why are the changes needed? Currently, PyPy3.10 is broken in `master` branch. Like `master` branch, we need to check the PyPy support for Apache Spark 4.0.0. https://github.com/apache/spark/actions/workflows/build_python_pypy3.10.yml <img width="752" alt="Screenshot 2025-01-27 at 20 56 06" src="https://github.com/user-attachments/assets/0ef0b21f-ef2d-47b0-85fa-8fce6042c420" /> ### Does this PR introduce _any_ user-facing change? No, this is a test infra change. ### How was this patch tested? Manual review. ### Was this patch authored or co-authored using generative AI tooling? No. Closes apache#49707 from dongjoon-hyun/SPARK-51017. Authored-by: Dongjoon Hyun <[email protected]> Signed-off-by: Dongjoon Hyun <[email protected]>
1 parent aa24a9a commit 04f862a

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#
2+
# Licensed to the Apache Software Foundation (ASF) under one
3+
# or more contributor license agreements. See the NOTICE file
4+
# distributed with this work for additional information
5+
# regarding copyright ownership. The ASF licenses this file
6+
# to you under the Apache License, Version 2.0 (the
7+
# "License"); you may not use this file except in compliance
8+
# with the License. You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing,
13+
# software distributed under the License is distributed on an
14+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15+
# KIND, either express or implied. See the License for the
16+
# specific language governing permissions and limitations
17+
# under the License.
18+
#
19+
20+
name: "Build / Python-only (branch-4.0, PyPy 3.10)"
21+
22+
on:
23+
schedule:
24+
- cron: '0 16 * * *'
25+
workflow_dispatch:
26+
27+
jobs:
28+
run-build:
29+
permissions:
30+
packages: write
31+
name: Run
32+
uses: ./.github/workflows/build_and_test.yml
33+
if: github.repository == 'apache/spark'
34+
with:
35+
java: 17
36+
branch: branch-4.0
37+
hadoop: hadoop3
38+
envs: >-
39+
{
40+
"PYSPARK_IMAGE_TO_TEST": "pypy-310",
41+
"PYTHON_TO_TEST": "pypy3"
42+
}
43+
jobs: >-
44+
{
45+
"pyspark": "true",
46+
"pyspark-pandas": "true"
47+
}

0 commit comments

Comments
 (0)