Skip to content

Commit

Permalink
Don't hide build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
mperham committed Jul 10, 2021
1 parent 2bae56e commit a14b7d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ release:
-F /tmp/release-notes.md -e -o

prepare: ## install build prereqs
@go get github.com/benbjohnson/ego/...@v0.4.2
go get github.com/benbjohnson/ego/...@v0.4.2
@echo Now you should be ready to run "make"

tags: clean ## Create tags file for vim, etc
Expand All @@ -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"
Expand Down

0 comments on commit a14b7d3

Please sign in to comment.