This is an automated email from the ASF dual-hosted git repository. jark pushed a commit to branch ci-1197 in repository https://gitbox.apache.org/repos/asf/fluss.git
commit be1fe26e06a429ff9da38e7a9f2fb3c85d7d0870 Author: Jark Wu <[email protected]> AuthorDate: Sun Aug 10 17:13:57 2025 +0800 fix matrix --- .github/workflows/ci-template.yaml | 7 ++++++- .github/workflows/ci.yaml | 6 +----- .github/workflows/nightly.yaml | 6 +----- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/.github/workflows/ci-template.yaml b/.github/workflows/ci-template.yaml index 87a06d8e3..f6676aa5f 100644 --- a/.github/workflows/ci-template.yaml +++ b/.github/workflows/ci-template.yaml @@ -31,8 +31,13 @@ on: type: string default: "" jobs: - test: + build: runs-on: self-hosted + strategy: + fail-fast: false + matrix: + module: [ core, flink ] + name: "${{ matrix.module }}" steps: - name: Checkout code uses: actions/checkout@v2 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 30c9dd961..54ce0d077 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -54,8 +54,4 @@ jobs: name: "Java 11" uses: ./.github/workflows/ci-template.yaml with: - java-version: "11" - strategy: - fail-fast: false - matrix: - module: [ core, flink ] \ No newline at end of file + java-version: "11" \ No newline at end of file diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index 49052679b..4836e10f5 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -31,8 +31,4 @@ jobs: uses: ./.github/workflows/ci-template.yaml with: java-version: "8" - maven-parameters: "-Pjava8" - strategy: - fail-fast: false - matrix: - module: [ core, flink ] \ No newline at end of file + maven-parameters: "-Pjava8" \ No newline at end of file
