Skip to content

Commit

Permalink
[SPARK-43845][INFRA] Setup Scala 2.12 Daily GitHub Action Job
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?

This PR aims to setup Scala 2.12 Daily GitHub Action Job by converting Scala 2.13 Daily Job.
- Rename `build_scala213.yml` file to `.github/workflows/build_scala212.yml`.
- Rename job name
```
-name: "Build (master, Scala 2.13, Hadoop 3, JDK 8)"
+name: "Build (master, Scala 2.12, Hadoop 3, JDK 8)"
```
- Switch SCALA_PROFILE from `scala2.13` to `scala2.12`.

### Why are the changes needed?

To keep the Scala 2.12 test coverage

### Does this PR introduce _any_ user-facing change?

No.

### How was this patch tested?

This is a daily job. We need to check after merging.

Closes #41354 from dongjoon-hyun/SPARK-43845.

Authored-by: Dongjoon Hyun <dongjoon@apache.org>
Signed-off-by: Dongjoon Hyun <dongjoon@apache.org>
  • Loading branch information
dongjoon-hyun committed May 29, 2023
1 parent c4b880f commit f91136a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# under the License.
#

name: "Build (master, Scala 2.13, Hadoop 3, JDK 8)"
name: "Build (master, Scala 2.12, Hadoop 3, JDK 8)"

on:
schedule:
Expand All @@ -36,7 +36,7 @@ jobs:
hadoop: hadoop3
envs: >-
{
"SCALA_PROFILE": "scala2.13"
"SCALA_PROFILE": "scala2.12"
}
jobs: >-
{
Expand Down

0 comments on commit f91136a

Please sign in to comment.