This is an automated email from the ASF dual-hosted git repository.

gurwls223 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 f693abc8de94 [SPARK-48192][INFRA] Enable TPC-DS tests in forked 
repository
f693abc8de94 is described below

commit f693abc8de949b1fd5f77b9e74037b0cc2298aef
Author: Hyukjin Kwon <gurwls...@apache.org>
AuthorDate: Wed May 8 17:13:11 2024 +0900

    [SPARK-48192][INFRA] Enable TPC-DS tests in forked repository
    
    ### What changes were proposed in this pull request?
    
    This PR is a sort of a followup of 
https://github.com/apache/spark/pull/46361. It proposes to run TPC-DS and 
Docker integration tests in PRs (that does not consume ASF resources).
    
    ### Why are the changes needed?
    
    TPC-DS and Docker integration stuff at least have to be tested in the PR if 
the PR touches the codes related to that.
    
    ### Does this PR introduce _any_ user-facing change?
    
    No, test-only.
    
    ### How was this patch tested?
    
    Manually
    
    ### Was this patch authored or co-authored using generative AI tooling?
    
    No.
    
    Closes #46470 from HyukjinKwon/SPARK-48192.
    
    Authored-by: Hyukjin Kwon <gurwls...@apache.org>
    Signed-off-by: Hyukjin Kwon <gurwls...@apache.org>
---
 .github/workflows/build_and_test.yml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build_and_test.yml 
b/.github/workflows/build_and_test.yml
index bb9f2f9a9603..4a11823aee60 100644
--- a/.github/workflows/build_and_test.yml
+++ b/.github/workflows/build_and_test.yml
@@ -83,6 +83,8 @@ jobs:
             yarn=`./dev/is-changed.py -m yarn`
             kubernetes=`./dev/is-changed.py -m kubernetes`
             sparkr=`./dev/is-changed.py -m sparkr`
+            tpcds=`./dev/is-changed.py -m sql`
+            docker=`./dev/is-changed.py -m docker-integration-tests`
             buf=true
             ui=true
             docs=true
@@ -91,6 +93,8 @@ jobs:
             yarn=false
             kubernetes=false
             sparkr=false
+            tpcds=false
+            docker=false
             buf=false
             ui=false
             docs=false
@@ -102,8 +106,8 @@ jobs:
               \"pyspark\": \"$pyspark\",
               \"pyspark-pandas\": \"$pandas\",
               \"sparkr\": \"$sparkr\",
-              \"tpcds-1g\": \"false\",
-              \"docker-integration-tests\": \"false\",
+              \"tpcds-1g\": \"$tpcds\",
+              \"docker-integration-tests\": \"$docker\",
               \"lint\" : \"true\",
               \"docs\" : \"$docs\",
               \"yarn\" : \"$yarn\",


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

Reply via email to