-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
24 additions
and
17 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
patches/0079-Speed-up-providerlint-by-re-using-build-cache-and-ig.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Bryce Lampe <[email protected]> | ||
Date: Fri, 13 Dec 2024 13:44:02 -0800 | ||
Subject: [PATCH] Speed up providerlint by re-using build cache and ignoring | ||
tests | ||
|
||
|
||
diff --git a/GNUmakefile b/GNUmakefile | ||
index 9b4adecff8..32137c8919 100644 | ||
--- a/GNUmakefile | ||
+++ b/GNUmakefile | ||
@@ -326,9 +326,10 @@ prereq-go: ## If $(GO_VER) is not installed, install it | ||
|
||
provider-lint: ## [CI] ProviderLint Checks / providerlint | ||
@echo "make: ProviderLint Checks / providerlint..." | ||
- @cd .ci/providerlint && go install -buildvcs=false . | ||
- @providerlint \ | ||
+ @cd .ci/providerlint && go build -buildvcs=false . | ||
+ @.ci/providerlint/providerlint \ | ||
-c 1 \ | ||
+ -test=false \ | ||
-AT001.ignored-filename-suffixes=_data_source_test.go \ | ||
-AWSAT006=false \ | ||
-AWSR002=false \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters