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 2dc70195 Reformat all code including third-party code first to save
time (#1223)
2dc70195 is described below
commit 2dc701951ee2e08bdee47cae7586108d2f5aa932
Author: Fei Wang <[email protected]>
AuthorDate: Wed Aug 27 19:46:27 2025 -0700
Reformat all code including third-party code first to save time (#1223)
---
dev/reformat | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/dev/reformat b/dev/reformat
index 33cf0616..af232b4a 100755
--- a/dev/reformat
+++ b/dev/reformat
@@ -40,19 +40,19 @@ function run_maven() {
fi
}
-sparkvers=(spark-3.0 spark-3.1 spark-3.2 spark-3.3 spark-3.4)
-for sparkver in "${sparkvers[@]}"
-do
- run_maven -P"${sparkver}"
-done
-
-# check or format the third-party code with spark-3.5
+# Check or format all code, including third-party code, with spark-3.5
sparkver=spark-3.5
for celebornver in celeborn-0.5 celeborn-0.6
do
run_maven -P"${sparkver}" -Pceleborn,"${celebornver}" -Puniffle,uniffle-0.9
-Ppaimon,paimon-1.1
done
+sparkvers=(spark-3.0 spark-3.1 spark-3.2 spark-3.3 spark-3.4)
+for sparkver in "${sparkvers[@]}"
+do
+ run_maven -P"${sparkver}"
+done
+
# check or format the rust code
if [[ "$CHECK" == "true" ]]; then
cargo fmt --check