TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

4 点作者 usuallybaffled将近 8 年前
Why did you project had to go back to Makefiles and other build tools?

1 comment

richardknop将近 8 年前
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.