Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Java] suppress maven download logs by --no-transfer-progress #846

Merged
merged 1 commit into from
Aug 6, 2023
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 ci/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ bump_javascript_version() {

deploy_jars() {
cd "$ROOT/java"
mvn -T10 clean deploy -DskipTests -Prelease
mvn -T10 clean deploy --no-transfer-progress -DskipTests -Prelease
}

deploy_python() {
Expand Down
8 changes: 4 additions & 4 deletions ci/format.sh
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,8 @@ format_all() {
if command -v mvn >/dev/null ; then
echo "Maven installed"
cd "$ROOT/java"
mvn -T10 spotless:apply
mvn -T10 checkstyle:check
mvn -T10 --no-transfer-progress spotless:apply
mvn -T10 --no-transfer-progress checkstyle:check
else
echo "Maven not installed, skip java check"
fi
Expand Down Expand Up @@ -254,8 +254,8 @@ format_changed() {
if command -v mvn >/dev/null ; then
echo "Maven installed"
cd "$ROOT/java"
mvn -T10 spotless:apply
mvn -T10 checkstyle:check
mvn -T10 --no-transfer-progress spotless:apply
mvn -T10 --no-transfer-progress checkstyle:check
else
echo "Maven not installed, skip java check"
fi
Expand Down
10 changes: 5 additions & 5 deletions ci/run_ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ case $1 in
echo "Executing fury java tests"
cd "$ROOT/java"
set +e
mvn -T16 --batch-mode test
mvn -T16 --batch-mode --no-transfer-progress test
testcode=$?
if [[ $testcode -ne 0 ]]; then
exit $testcode
Expand All @@ -119,7 +119,7 @@ case $1 in
echo "Executing fury java tests"
cd "$ROOT/java"
set +e
mvn -T16 --batch-mode test
mvn -T16 --batch-mode --no-transfer-progress test
testcode=$?
if [[ $testcode -ne 0 ]]; then
exit $testcode
Expand All @@ -131,7 +131,7 @@ case $1 in
echo "Executing fury java tests"
cd "$ROOT/java"
set +e
mvn -T16 --batch-mode test -pl '!fury-format,!fury-testsuite,!fury-benchmark'
mvn -T16 --batch-mode --no-transfer-progress test -pl '!fury-format,!fury-testsuite,!fury-benchmark'
testcode=$?
if [[ $testcode -ne 0 ]]; then
exit $testcode
Expand Down Expand Up @@ -202,8 +202,8 @@ case $1 in
echo "Executing format check"
bash ci/format.sh
cd "$ROOT/java"
mvn -T10 -B spotless:check
mvn -T10 -B checkstyle:check
mvn -T10 -B --no-transfer-progress spotless:check
mvn -T10 -B --no-transfer-progress checkstyle:check
echo "Executing format check succeeds"
;;
*)
Expand Down
Loading