-
Notifications
You must be signed in to change notification settings - Fork 231
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
1 changed file
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ release: | |
-F /tmp/release-notes.md -e -o | ||
|
||
prepare: ## install build prereqs | ||
@go get github.com/benbjohnson/ego/[email protected] | ||
go get github.com/benbjohnson/ego/[email protected] | ||
@echo Now you should be ready to run "make" | ||
|
||
tags: clean ## Create tags file for vim, etc | ||
|
@@ -50,10 +50,10 @@ test: clean generate ## Execute test suite | |
# docker buildx create --name cross | ||
# docker buildx use cross | ||
dimg: clean generate ## Make cross-platform Docker images for the current version | ||
@GOOS=linux GOARCH=amd64 go build -o $(NAME) cmd/faktory/daemon.go | ||
GOOS=linux GOARCH=amd64 go build -o $(NAME) cmd/faktory/daemon.go | ||
upx -qq ./faktory | ||
docker buildx build --platform linux/amd64 --tag contribsys/faktory:$(VERSION) --tag contribsys/faktory:latest --load . | ||
@GOOS=linux GOARCH=arm64 go build -o $(NAME) cmd/faktory/daemon.go | ||
GOOS=linux GOARCH=arm64 go build -o $(NAME) cmd/faktory/daemon.go | ||
docker buildx build --platform linux/arm64 --tag contribsys/faktory:$(VERSION) --tag contribsys/faktory:latest --load . | ||
|
||
drun: ## Run Faktory in a local Docker image, see also "make dimg" | ||
|