From e834ef74dcbfc29f5288a41392dc3d5c08119fcf Mon Sep 17 00:00:00 2001 From: Takeshi Yamamuro Date: Thu, 6 May 2021 16:06:50 -0700 Subject: [PATCH] [SPARK-35293][SQL][TESTS][FOLLOWUP] Update the hash key to refresh TPC-DS cache data in forked GA jobs ### What changes were proposed in this pull request? This is a follow-up PRi of #32420 and it intends to update the hash key to refresh TPC-DS cache data in forked GA jobs. ### Why are the changes needed? To recover GA jobs. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? GA passed. Closes #32460 from maropu/SPARK-35293-FOLLOWUP. Authored-by: Takeshi Yamamuro Signed-off-by: Dongjoon Hyun --- .github/workflows/build_and_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index 3b6ce048de..e6b54464e2 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -520,7 +520,7 @@ jobs: uses: actions/cache@v2 with: path: ./tpcds-sf-1 - key: tpcds-${{ hashFiles('sql/core/src/test/scala/org/apache/spark/sql/TPCDSSchema.scala') }} + key: tpcds-${{ hashFiles('.github/workflows/build_and_test.yml', 'sql/core/src/test/scala/org/apache/spark/sql/TPCDSSchema.scala') }} - name: Checkout tpcds-kit repository if: steps.cache-tpcds-sf-1.outputs.cache-hit != 'true' uses: actions/checkout@v2