From 572241eba352b12465aa4c09be98fa2b63340945 Mon Sep 17 00:00:00 2001 From: Andrew Hopkins Date: Fri, 25 Mar 2022 16:56:31 -0700 Subject: [PATCH 1/2] test change --- util/whitespace.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/whitespace.txt b/util/whitespace.txt index b84c00f4b5..040bfdb6cc 100644 --- a/util/whitespace.txt +++ b/util/whitespace.txt @@ -1,2 +1,4 @@ This file is ignored. It exists to make no-op commits to trigger new builds. + + From 42d30256832045eef2bf371d0224e50b3896c9fc Mon Sep 17 00:00:00 2001 From: Andrew Hopkins Date: Mon, 28 Mar 2022 11:13:18 -0700 Subject: [PATCH 2/2] Only run the analytics on the main branch --- tests/ci/cdk/cdk/aws_lc_analytics_stack.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/ci/cdk/cdk/aws_lc_analytics_stack.py b/tests/ci/cdk/cdk/aws_lc_analytics_stack.py index a85c254926..9079d8ba0c 100644 --- a/tests/ci/cdk/cdk/aws_lc_analytics_stack.py +++ b/tests/ci/cdk/cdk/aws_lc_analytics_stack.py @@ -28,6 +28,9 @@ def __init__(self, webhook=True, webhook_filters=[ codebuild.FilterGroup.in_event_of(codebuild.EventAction.PUSH) + # The current FIPS branch does not have the configuration needed to run the analytics, once we update + # the branch or create a new FIPS branch it should be updated to '(main)|(fips.*)' + .and_branch_is("main") ], webhook_triggers_batch_build=True)