This is an automated email from the ASF dual-hosted git repository.
snuyanzin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git
The following commit(s) were added to refs/heads/master by this push:
new eaeefddd526 [FLINK-34423][ci] Make `tools/ci/compile_ci.sh` not
necessarily rely on clean phase
eaeefddd526 is described below
commit eaeefddd526fb7663aa8039d1814a29ee0c24299
Author: Sergey Nuyanzin <[email protected]>
AuthorDate: Mon Jul 13 08:27:55 2026 +0200
[FLINK-34423][ci] Make `tools/ci/compile_ci.sh` not necessarily rely on
clean phase
---
.github/workflows/template.flink-ci.yml | 2 +-
tools/ci/compile_ci.sh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/template.flink-ci.yml
b/.github/workflows/template.flink-ci.yml
index c18f633a68e..6b6769b84dd 100644
--- a/.github/workflows/template.flink-ci.yml
+++ b/.github/workflows/template.flink-ci.yml
@@ -166,7 +166,7 @@ jobs:
- name: "Test"
working-directory: ${{ env.CONTAINER_LOCAL_WORKING_DIR }}
run: |
- ${{ inputs.environment }} ./tools/ci/compile_ci.sh || exit $?
+ ${{ inputs.environment }} ./tools/ci/compile_ci.sh
-Dmaven.clean.skip=true || exit $?
test:
name: "Test (module: ${{ matrix.module }})"
diff --git a/tools/ci/compile_ci.sh b/tools/ci/compile_ci.sh
index d88cce6848d..a5c45a42b22 100755
--- a/tools/ci/compile_ci.sh
+++ b/tools/ci/compile_ci.sh
@@ -24,6 +24,6 @@
CI_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd)
source "${CI_DIR}/maven-utils.sh"
-MVN=run_mvn "${CI_DIR}/compile.sh"
+MVN=run_mvn "${CI_DIR}/compile.sh" "${@}"
exit $?