This is an automated email from the ASF dual-hosted git repository.
vhs pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new 3ffa725fb53f chore(ci): Retry spark downloads (#17732)
3ffa725fb53f is described below
commit 3ffa725fb53febb32d18afcbb1bdee0f0fab3688
Author: Tim Brown <[email protected]>
AuthorDate: Sun Dec 28 23:49:59 2025 -0500
chore(ci): Retry spark downloads (#17732)
* switch to wget with retries
* try without hadoop
* add skip docker when just building
* use existing option
* use oringal tar
---
.github/workflows/bot.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/bot.yml b/.github/workflows/bot.yml
index 58943e4312b0..965f15779e51 100644
--- a/.github/workflows/bot.yml
+++ b/.github/workflows/bot.yml
@@ -1160,7 +1160,7 @@ jobs:
FLINK_PROFILE: ${{ matrix.flinkProfile }}
SCALA_PROFILE: '-Dscala-2.12 -Dscala.binary.version=2.12'
run:
- mvn clean install -T 2 $SCALA_PROFILE -D"$SPARK_PROFILE"
-D"$FLINK_PROFILE" -Pintegration-tests -DskipTests=true $MVN_ARGS
+ mvn clean install -T 2 $SCALA_PROFILE -D"$SPARK_PROFILE"
-D"$FLINK_PROFILE" -Pintegration-tests -DskipTests=true $MVN_ARGS
-Ddocker.compose.skip=true
- name: 'UT integ-test'
env:
SPARK_PROFILE: ${{ matrix.sparkProfile }}
@@ -1174,7 +1174,7 @@ jobs:
SCALA_PROFILE: '-Dscala-2.12 -Dscala.binary.version=2.12'
run: |
echo "Downloading $SPARK_ARCHIVE"
- curl https://archive.apache.org/dist/spark/$SPARK_ARCHIVE
--create-dirs -o $GITHUB_WORKSPACE/$SPARK_ARCHIVE
+ curl --retry 5 https://archive.apache.org/dist/spark/$SPARK_ARCHIVE
--create-dirs -o $GITHUB_WORKSPACE/$SPARK_ARCHIVE
tar -xvf $GITHUB_WORKSPACE/$SPARK_ARCHIVE -C $GITHUB_WORKSPACE/
mkdir /tmp/spark-events/
SPARK_ARCHIVE_BASENAME=$(basename $SPARK_ARCHIVE)