From 2a32cfb5e191e29699f2f1690e2192dffd93074f Mon Sep 17 00:00:00 2001 From: Anuj Chaudhari Date: Thu, 8 Jan 2026 10:38:09 -0800 Subject: [PATCH] Update to run tests with 4 nodes to reduce infra load --- .github/workflows/tests-integration-reusable.yml | 2 +- Makefile | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests-integration-reusable.yml b/.github/workflows/tests-integration-reusable.yml index 9633c724ff..6f82c54cdb 100644 --- a/.github/workflows/tests-integration-reusable.yml +++ b/.github/workflows/tests-integration-reusable.yml @@ -18,7 +18,7 @@ on: env: ENV_NAME: ${{ inputs.env-name }} - NODES: 12 + NODES: 4 FLAKE_ATTEMPTS: ${{ vars.TEST_FLAKE_ATTEMPTS || '5' }} BBL_CLI_VERSION: ${{ vars.BBL_CLI_VERSION }} BOSH_CLI_VERSION: ${{ vars.BOSH_CLI_VERSION }} diff --git a/Makefile b/Makefile index 76bbbc8b7a..26b1637990 100644 --- a/Makefile +++ b/Makefile @@ -140,9 +140,13 @@ integration-full-tests: integration-tests-full integration-tests-full: build integration-cleanup integration-isolated integration-push integration-experimental integration-plugin integration-global integration-selfcontained ## Run all isolated, push, experimental, plugin, selfcontained, and global integration tests integration-tests-full-ci: install-test-deps integration-cleanup - $(ginkgo_int) -nodes $(NODES) \ - integration/shared/isolated integration/v7/isolated integration/shared/plugin integration/shared/experimental integration/v7/experimental integration/v7/push - $(ginkgo_int) integration/shared/global integration/v7/global + $(ginkgo_int) -nodes $(NODES) -flake-attempts $(FLAKE_ATTEMPTS) \ + integration/shared/isolated integration/v7/isolated + $(ginkgo_int) -nodes $(NODES) -flake-attempts $(FLAKE_ATTEMPTS) \ + integration/shared/plugin integration/shared/experimental + $(ginkgo_int) -nodes $(NODES) -flake-attempts $(FLAKE_ATTEMPTS) \ + integration/v7/experimental integration/v7/push + $(ginkgo_int) -flake-attempts $(FLAKE_ATTEMPTS) integration/shared/global integration/v7/global lint: format ## Runs all linters and formatters @echo "Running linters..."