You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by do...@apache.org on 2022/06/20 06:25:38 UTC

[spark] branch master updated: [SPARK-39516][INFRA] Set a scheduled build for branch-3.3

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 38e175074e7 [SPARK-39516][INFRA] Set a scheduled build for branch-3.3
38e175074e7 is described below

commit 38e175074e77f07b6de4ce372eb64e8e22196061
Author: Hyukjin Kwon <gu...@apache.org>
AuthorDate: Sun Jun 19 23:25:25 2022 -0700

    [SPARK-39516][INFRA] Set a scheduled build for branch-3.3
    
    ### What changes were proposed in this pull request?
    
    This PR creates a scheduled job for branch-3.3.
    
    ### Why are the changes needed?
    
    To make sure branch-3.3 build fine.
    
    ### Does this PR introduce _any_ user-facing change?
    No, dev-only.
    
    ### How was this patch tested?
    
    This is a copy of branch-3.2. Should work. Also, scheduled jobs are already broken now. I will fix them in parallel to recover.
    
    Closes #36914 from HyukjinKwon/SPARK-39516.
    
    Lead-authored-by: Hyukjin Kwon <gu...@apache.org>
    Co-authored-by: Hyukjin Kwon <gu...@gmail.com>
    Signed-off-by: Dongjoon Hyun <do...@apache.org>
---
 .github/workflows/build_and_test.yml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml
index 844fd130d50..81381eb16d4 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -37,6 +37,8 @@ on:
     - cron: '0 13 * * *'
     # Java 17
     - cron: '0 16 * * *'
+    # branch-3.3
+    - cron: '0 19 * * *'
   workflow_call:
     inputs:
       ansi_enabled:
@@ -99,6 +101,12 @@ jobs:
           echo '::set-output name=type::scheduled'
           echo '::set-output name=envs::{"SKIP_MIMA": "true", "SKIP_UNIDOC": "true"}'
           echo '::set-output name=hadoop::hadoop3'
+        elif [ "${{ github.event.schedule }}" = "0 19 * * *" ]; then
+          echo '::set-output name=java::8'
+          echo '::set-output name=branch::branch-3.3'
+          echo '::set-output name=type::scheduled'
+          echo '::set-output name=envs::{"SCALA_PROFILE": "scala2.13"}'
+          echo '::set-output name=hadoop::hadoop3'
         else
           echo '::set-output name=java::8'
           echo '::set-output name=branch::master'  # NOTE: UPDATE THIS WHEN CUTTING BRANCH


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org