From f526bea1dc0c2d744566f73212000e205f4ecec9 Mon Sep 17 00:00:00 2001 From: Hyukjin Kwon Date: Wed, 10 Jan 2024 12:26:56 +0900 Subject: [PATCH] [SPARK-46649][PYTHON][INFRA] Run PyPy 3 and Python 3.10 tests independently ### What changes were proposed in this pull request? This PR proposes to split PyPy 3 and Python 3.10 builds ### Why are the changes needed? https://github.com/apache/spark/actions/runs/7462843546/job/20306241275 Seems like it terminates in the middle because of OOM. we should split ### Does this PR introduce _any_ user-facing change? No, dev-only ### How was this patch tested? CI should verify the change. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #44655 from HyukjinKwon/SPARK-46649. Authored-by: Hyukjin Kwon Signed-off-by: Hyukjin Kwon --- .github/workflows/build_python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_python.yml b/.github/workflows/build_python.yml index ebd8de2311c66..a2cf7c64f089b 100644 --- a/.github/workflows/build_python.yml +++ b/.github/workflows/build_python.yml @@ -27,7 +27,7 @@ jobs: run-build: strategy: matrix: - pyversion: ["pypy3,python3.10", "python3.11", "python3.12"] + pyversion: ["pypy3", "python3.10", "python3.11", "python3.12"] permissions: packages: write name: Run