TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What's your reason for not using `go build`?

4 pointsby usuallybaffledalmost 8 years ago
Why did you project had to go back to Makefiles and other build tools?

1 comment

richardknopalmost 8 years ago
Often build process these days creates a docker container. It is sensible to wrap the commands to build the container in Makefile, also you might want to run tests before creating a build using docker-compose, use linters and other tools to check code quality, increment the build number and/or update version file etc. Eventually you'll realize it makes sense to have all of that in a single Makefile rather than scattered in multiple bash scripts.