From 3e8d9bb3befbf7acb07a9e220778b7b6d3eb8d32 Mon Sep 17 00:00:00 2001 From: wuyfee <30968107+Wuyunfan-BUPT@users.noreply.github.com> Date: Wed, 9 Oct 2024 11:46:36 +0800 Subject: [PATCH] Update github-actions-demo.yml --- .github/workflows/github-actions-demo.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/github-actions-demo.yml b/.github/workflows/github-actions-demo.yml index 396cbe9..3cd4dac 100644 --- a/.github/workflows/github-actions-demo.yml +++ b/.github/workflows/github-actions-demo.yml @@ -29,6 +29,11 @@ jobs: - name: java e2e test run: | echo ${{ matrix.mode }}-${{ matrix.version }} + if [ ${{ matrix.mode }} = "cluster" ] && [ ${{ matrix.version }} = "ss" ];then + exit 1 + else + exit 0 + fi getresult: needs: [prejob, e2e-java-test] runs-on: ubuntu-latest