From 77e4c89a5ad6f8e70ce15d462e6022f889ec545f Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Tue, 23 Mar 2021 10:28:57 -0400 Subject: [PATCH] bump coverage threshold + use ubuntu for snapshot builds Signed-off-by: Alex Goodman --- .github/workflows/validations.yaml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validations.yaml b/.github/workflows/validations.yaml index bb0707069..8befc2711 100644 --- a/.github/workflows/validations.yaml +++ b/.github/workflows/validations.yaml @@ -240,7 +240,7 @@ jobs: Build-Snapshot-Artifacts: name: "Build snapshot artifacts" - runs-on: macos-latest # We're creating these snapshot builds on macOS to be consistent with our release workflow's build process, which also takes place on macOS (due to code signing requirements). + runs-on: ubuntu-20.04 # run only on push event (internal PRs) or on a pull_request event that is from a fork (external PR) # skip if this is a pull_request event on an internal PR (which is already covered by push events) if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository diff --git a/Makefile b/Makefile index fe74cc184..ed2431803 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ RESET := $(shell tput -T linux sgr0) TITLE := $(BOLD)$(PURPLE) SUCCESS := $(BOLD)$(GREEN) # the quality gate lower threshold for unit test total % coverage (by function statements) -COVERAGE_THRESHOLD := 68 +COVERAGE_THRESHOLD := 70 # CI cache busting values; change these if you want CI to not use previous stored cache INTEGRATION_CACHE_BUSTER="23493ba738c3d2f" CLI_CACHE_BUSTER="789bacdf"