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 33830d2694f [SPARK-44113][INFRA][FOLLOW-UP] Remove Scala 2.13
scheduled jobs
33830d2694f is described below
commit 33830d2694f658e2d8a69f14c692fe0e85704f45
Author: Hyukjin Kwon <[email protected]>
AuthorDate: Thu Sep 21 21:58:19 2023 -0700
[SPARK-44113][INFRA][FOLLOW-UP] Remove Scala 2.13 scheduled jobs
### What changes were proposed in this pull request?
This PR is a followup of https://github.com/apache/spark/pull/43008 that
removes the leftover scheduled GitHub Actions build for Scala 2.13 scheduled
build.
### Why are the changes needed?
After dropping Scala 2.12, the default build is exactly same as the
scheduled job for Scala 2.13 now.
### Does this PR introduce _any_ user-facing change?
No, dev-only.
### How was this patch tested?
Will monitor the scheduled builds.
### Was this patch authored or co-authored using generative AI tooling?
No.
Closes #43047 from HyukjinKwon/SPARK-44113-folliwup.
Authored-by: Hyukjin Kwon <[email protected]>
Signed-off-by: Dongjoon Hyun <[email protected]>
---
.github/workflows/build_scala213.yml | 49 ------------------------------------
1 file changed, 49 deletions(-)
diff --git a/.github/workflows/build_scala213.yml
b/.github/workflows/build_scala213.yml
deleted file mode 100644
index cae0981ee1e..00000000000
--- a/.github/workflows/build_scala213.yml
+++ /dev/null
@@ -1,49 +0,0 @@
-#
-# 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 (master, Scala 2.13, Hadoop 3, JDK 8)"
-
-on:
- schedule:
- - cron: '0 19 * * *'
-
-jobs:
- run-build:
- permissions:
- packages: write
- name: Run
- uses: ./.github/workflows/build_and_test.yml
- if: github.repository == 'apache/spark'
- with:
- java: 8
- branch: master
- hadoop: hadoop3
- envs: >-
- {
- "SCALA_PROFILE": "scala2.13"
- }
- jobs: >-
- {
- "build": "true",
- "pyspark": "true",
- "sparkr": "true",
- "tpcds-1g": "true",
- "docker-integration-tests": "true",
- "lint" : "true"
- }
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]