From 278e7c9ab15c1a73e2b07ed1e1c424c4b4d38e22 Mon Sep 17 00:00:00 2001 From: "Doroszlai, Attila" Date: Mon, 11 Nov 2024 20:19:03 +0100 Subject: [PATCH] HDDS-11683. Skip shade in most integration checks --- .github/workflows/ci.yml | 3 +++ .github/workflows/intermittent-test-check.yml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a818a9590620..c7d2227962a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -613,6 +613,9 @@ jobs: if [[ "${{ matrix.profile }}" == "flaky" ]]; then args="$args -Dsurefire.rerunFailingTestsCount=5 -Dsurefire.fork.timeout=3600" fi + if [[ "${{ matrix.profile }}" != "filesystem" ]]; then + args="$args -DskipShade" + fi hadoop-ozone/dev-support/checks/integration.sh -P${{ matrix.profile }} ${args} env: diff --git a/.github/workflows/intermittent-test-check.yml b/.github/workflows/intermittent-test-check.yml index 5de5654aced3..33a1ee2c6e1d 100644 --- a/.github/workflows/intermittent-test-check.yml +++ b/.github/workflows/intermittent-test-check.yml @@ -183,7 +183,7 @@ jobs: export OZONE_REPO_CACHED=true fi - args="-DexcludedGroups=native|slow|unhealthy" + args="-DexcludedGroups=native|slow|unhealthy -DskipShade" if [[ "${{ github.event.inputs.ratis-ref }}" != "" ]]; then args="$args -Dratis.version=${{ needs.ratis.outputs.ratis-version }}" args="$args -Dratis.thirdparty.version=${{ needs.ratis.outputs.thirdparty-version }}"