Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[buildkite] Pause coverage reporting in buildkite pipeline tests #4314

Merged
merged 11 commits into from
Dec 20, 2024
Next Next commit
pause code coverage in makefile for unit test, big unit test, integra…
…tion
kentzeng12 committed Dec 19, 2024
commit ab96889174690b7e903d5dc4e4131278b9c439f7
12 changes: 9 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -261,16 +261,22 @@ SUBDIR_TARGETS := \

.PHONY: test-ci-unit
test-ci-unit: test-base
$(process_coverfile) $(coverfile)
if [ -z "$(SKIP_CODECOV)" ]; then \
$(process_coverfile) $(coverfile) \
fi

.PHONY: test-ci-big-unit
test-ci-big-unit: test-big-base
$(process_coverfile) $(coverfile)
if [ -z "$(SKIP_CODECOV)" ]; then \
$(process_coverfile) $(coverfile) \
fi

.PHONY: test-ci-integration
test-ci-integration:
INTEGRATION_TIMEOUT=10m TEST_SERIES_CACHE_POLICY=$(cache_policy) TEST_AGGREGATOR_CLIENT_TYPE=$(aggregator_client) make test-base-ci-integration
$(process_coverfile) $(coverfile)
if [ -z "$(SKIP_CODECOV)" ]; then \
$(process_coverfile) $(coverfile) \
fi

.PHONY: test-ci-cluster-integration
test-ci-cluster-integration: