Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
-Pscala-2.12 -Pspark-3.5 \
-Pceleborn,celeborn-0.6 \
-Puniffle,uniffle-0.9 \
-Ppaimon,paimon-1.1
-Ppaimon,paimon-1.2
- name: Upload rat report
if: failure()
uses: actions/upload-artifact@v4
Expand Down
4 changes: 2 additions & 2 deletions auron-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ print_help() {
echo " --scalaver <VERSION> Specify Scala version (e.g. 2.12/2.13)"
echo " --celeborn <VERSION> Specify Celeborn version (e.g. 0.5/0.6)"
echo " --uniffle <VERSION> Specify Uniffle version (e.g. 0.9)"
echo " --paimon <VERSION> Specify Paimon version (e.g. 1.1)"
echo " --paimon <VERSION> Specify Paimon version (e.g. 1.2)"
echo " --clean <true|false> Clean before build (default: true)"
echo " --skiptests <true|false> Skip unit tests (default: true)"
echo " -h, --help Show this help message"
echo
echo "Examples:"
echo " $0 --pre --sparkver 3.5 --scalaver 2.12 -DskipBuildNative"
echo " $0 --docker true --clean true --skiptests true --release --sparkver 3.5 --scalaver 2.12 --celeborn 0.5 --uniffle 0.9 --paimon 1.1"
echo " $0 --docker true --clean true --skiptests true --release --sparkver 3.5 --scalaver 2.12 --celeborn 0.5 --uniffle 0.9 --paimon 1.2"
exit 0
}

Expand Down
2 changes: 1 addition & 1 deletion dev/reformat
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function run_maven() {
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
run_maven -P"${sparkver}" -Pceleborn,"${celebornver}" -Puniffle,uniffle-0.9 -Ppaimon,paimon-1.2
done

sparkvers=(spark-3.0 spark-3.1 spark-3.2 spark-3.3 spark-3.4)
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -711,12 +711,12 @@
</profile>

<profile>
<id>paimon-1.1</id>
<id>paimon-1.2</id>
<modules>
<module>thirdparty/auron-paimon</module>
</modules>
<properties>
<paimonVersion>1.1.1</paimonVersion>
<paimonVersion>1.2.0</paimonVersion>
</properties>
</profile>
</profiles>
Expand Down