From eacf82ad227ec201924601a093532c4a9d080877 Mon Sep 17 00:00:00 2001 From: panbingkun Date: Sat, 23 Dec 2023 15:14:28 -0800 Subject: [PATCH] [SPARK-45231][INFRA][FOLLOWUP] Remove unrecognized and meaningless command about Ammonite from the GA testing workflow ### What changes were proposed in this pull request? The pr is followup https://github.com/apache/spark/pull/42993 ### Why are the changes needed? Remove unrecognized and meaningless command about Ammonite from the GA testing workflow. ### Does this PR introduce _any_ user-facing change? No. ### How was this patch tested? Pass GA. ### Was this patch authored or co-authored using generative AI tooling? No. Closes #44386 from panbingkun/SPARK-45231_FOLLOWUP. Authored-by: panbingkun Signed-off-by: Dongjoon Hyun --- .github/workflows/maven_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven_test.yml b/.github/workflows/maven_test.yml index 8f44f07fc0007..3f19c76fd9616 100644 --- a/.github/workflows/maven_test.yml +++ b/.github/workflows/maven_test.yml @@ -174,7 +174,7 @@ jobs: shell: 'script -q -e -c "bash {0}"' run: | # Fix for TTY related issues when launching the Ammonite REPL in tests. - export TERM=vt100 && script -qfc 'echo exit | amm -s' && rm typescript + export TERM=vt100 # `set -e` to make the exit status as expected due to use `script -q -e -c` to run the commands set -e export MAVEN_OPTS="-Xss64m -Xmx4g -Xms4g -XX:ReservedCodeCacheSize=128m -Dorg.slf4j.simpleLogger.defaultLogLevel=WARN"