Skip to content

Commit

Permalink
Makefile: skip darwin/amd64 target
Browse files Browse the repository at this point in the history
The darwin targets must be skipped for now as we don't have stable macOS
builders yet.

Change-Id: I017ef14451a0ac2cc815faec49d84ac47d66a192
  • Loading branch information
amwolff committed Dec 13, 2021
1 parent 1884dc0 commit d2a2ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ gateway_%:
$(MAKE) binary-check COMPONENT=gateway GOARCH=$(word 3, $(subst _, ,$@)) GOOS=$(word 2, $(subst _, ,$@))

COMPONENTLIST := gateway
OSARCHLIST := darwin_amd64 linux_amd64 linux_arm linux_arm64 windows_amd64 freebsd_amd64
OSARCHLIST := linux_amd64 linux_arm linux_arm64 windows_amd64 freebsd_amd64
BINARIES := $(foreach C,$(COMPONENTLIST),$(foreach O,$(OSARCHLIST),$C_$O))
.PHONY: binaries
binaries: ${BINARIES} ## Build gateway binaries (jenkins)
Expand Down

0 comments on commit d2a2ead

Please sign in to comment.