-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Require yq in Makefile, install yq on Windows CI runners (#1720)
* chore: require yq in Makefile Signed-off-by: Justin Kolberg <[email protected]> * chore(ci): install yq on windows Signed-off-by: Justin Kolberg <[email protected]> * chore(ci): install yq on windows workflow-test Signed-off-by: Justin Kolberg <[email protected]> --------- Signed-off-by: Justin Kolberg <[email protected]> Co-authored-by: Raj Nishtala <[email protected]>
- Loading branch information
1 parent
b495cd8
commit 5e81667
Showing
3 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,6 +24,11 @@ BUILDER_BIN_PATH ?= $(HOME)/bin | |
|
||
INSTALLED_BUILDER_VERSION := $(shell $(BUILDER_BIN_NAME) version 2>&1) | ||
|
||
INSTALLED_YQ_VERSION := $(shell yq --version 2>&1) | ||
ifeq ($(INSTALLED_YQ_VERSION),) | ||
$(error "The yq command is required but was not found") | ||
endif | ||
|
||
# Settings for macOS builds | ||
ifeq ($(OS),darwin) | ||
AC_USERNAME ?= [email protected] | ||
|