Skip to content

Commit

Permalink
Makefile: Disable darwin targets (#42)
Browse files Browse the repository at this point in the history
Due to incompatabilities, we need to disable darwin targets for go 1.17
  • Loading branch information
stefanbenten authored Oct 3, 2021
1 parent 9b21c0d commit 99a0464
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 @@ -110,7 +110,7 @@ binary:
@if [ -z "${COMPONENT}" ]; then echo "Try one of the following targets instead:" \
&& for b in binaries ${BINARIES}; do echo "- $$b"; done && exit 1; fi
# freebsd/amd64 target is currently skipped until https://storjlabs.atlassian.net/browse/GMT-302
storj-release --components="cmd/${COMPONENT}" --go-version="${GO_VERSION}" --branch="${BRANCH_NAME}" --skip-osarches="freebsd/amd64"
storj-release --components="cmd/${COMPONENT}" --go-version="${GO_VERSION}" --branch="${BRANCH_NAME}" --skip-osarches="freebsd/amd64,darwin/amd64,darwin/arm64"

.PHONY: binaries
binaries: ${BINARIES} ## Build gateway-mt, authservice, and linksharing binaries (jenkins)
Expand Down

0 comments on commit 99a0464

Please sign in to comment.