From d5d4901e860eaeddd2bb8590536abc9f8ca0bff7 Mon Sep 17 00:00:00 2001 From: mrproliu <741550557@qq.com> Date: Tue, 31 Oct 2023 21:05:44 +0800 Subject: [PATCH] Reduce the execute duration of CI (#3581) --- .github/workflows/test-v3.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-v3.yml b/.github/workflows/test-v3.yml index 05e6c080c21..fd77a3efa90 100644 --- a/.github/workflows/test-v3.yml +++ b/.github/workflows/test-v3.yml @@ -40,7 +40,7 @@ jobs: path: ~/.npm key: ${{ runner.os }}-npm-packages-${{ hashFiles('zipkin-lens/package-lock.json') }} - name: Test without Docker - run: build-bin/maven_go_offline && build-bin/test -Ddocker.skip=true -Dcheckstyle.skip=true + run: build-bin/maven_go_offline && build-bin/test -Ddocker.skip=true -Dcheckstyle.skip=true -DskipUTs=true -DexcludedGroups=slow test_docker: runs-on: ubuntu-20.04 # newest available distribution, aka focal if: "!contains(github.event.head_commit.message, 'maven-release-plugin')" @@ -72,4 +72,4 @@ jobs: | # configure_test seeds NPM cache, which isn't needed for these tests build-bin/maven/maven_go_offline && build-bin/docker/configure_docker && - build-bin/test -pl :${{ matrix.name }} --am -Dlicense.skip=true -Dcheckstyle.skip=true \ No newline at end of file + build-bin/test -pl :${{ matrix.name }} --am -Dlicense.skip=true -Dcheckstyle.skip=true -DskipUTs=true -DexcludedGroups=slow \ No newline at end of file