This is an automated email from the ASF dual-hosted git repository.
richox pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/auron.git
The following commit(s) were added to refs/heads/master by this push:
new b0d5f721 [AURON #1799][ci] Fix Spark cache key with hadoop-profile
(#1800)
b0d5f721 is described below
commit b0d5f721bc9c4464e9a490aec6c5bd2e79f835be
Author: yew1eb <[email protected]>
AuthorDate: Sat Jan 17 14:32:47 2026 +0800
[AURON #1799][ci] Fix Spark cache key with hadoop-profile (#1800)
<!--
- Start the PR title with the related issue ID, e.g. '[AURON #XXXX]
Short summary...'.
-->
# Which issue does this PR close?
Closes #1799
# Rationale for this change
# What changes are included in this PR?
# Are there any user-facing changes?
# How was this patch tested?
---
.github/workflows/tpcds-reusable.yml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/tpcds-reusable.yml
b/.github/workflows/tpcds-reusable.yml
index 8b3f874b..411ccd6f 100644
--- a/.github/workflows/tpcds-reusable.yml
+++ b/.github/workflows/tpcds-reusable.yml
@@ -249,14 +249,14 @@ jobs:
echo "uniffleversion=$UNIFFLE_VERSION" >> $GITHUB_OUTPUT
fi
- - name: Cache Spark (Spark ${{ inputs.sparkver }}, Scala ${{
inputs.scalaver }})
+ - name: Cache Spark (Spark ${{ inputs.sparkver }}, Scala ${{
inputs.scalaver }}, ${{ inputs.hadoop-profile }})
uses: actions/cache@v5
id: cache-spark-bin
with:
path: spark-bin-${{ inputs.sparkver }}_${{ inputs.scalaver }}
- key: spark-bin-${{ inputs.sparkver }}_${{ inputs.scalaver }}
+ key: spark-bin-${{ inputs.sparkver }}_${{ inputs.scalaver }}-${{
inputs.hadoop-profile }}
- - name: Setup Spark (Spark ${{ inputs.sparkver }}, Scala ${{
inputs.scalaver }})
+ - name: Setup Spark (Spark ${{ inputs.sparkver }}, Scala ${{
inputs.scalaver }}, ${{ inputs.hadoop-profile }})
id: setup-spark-bin
if: steps.cache-spark-bin.outputs.cache-hit != 'true'
run: |