golang 構建工具之 Makefile
可能是因為編譯太簡單了,golang 並沒有一個官方的構建工具(類似於 java 的 maven 和 gradle之類的),但是除了編譯,我們可能還需要下載依賴,執行測試,甚至像 easyjson,protobuf,thrift 這樣的工具下載和程式碼生成,如果沒有構建工具,這些工作就會非常麻煩
為了解決這個問題,之前寫過一個 everything.sh
的指令碼,把所有的操作都封裝在這個指令碼里面,只需要執行類似於 sh everything.sh dependency
的命令就可以完成對應的工作,大大簡化了構建過程,但是也有一個問題,shell 指令碼本身的可讀性並不是很好,而且對於各個操作之間的依賴不好描述
一次偶然的機會,在 github 上看到有人用 Makefile,就嘗試了一下,發現真的非常合適,Makefile 本身就是用來描述依賴的,可讀性非常好,而且與強大的 shell 結合在一起,基本可以實現任何想要的功能
下面是我在實際專案中使用的一個 Makefile,支援的功能包括
make build
: 編譯make vendor
: 下載依賴make api
: 生成協議程式碼make json
: easyjson 程式碼生成make test
: 執行單元測試make benchmark
: 執行效能測試make stat
: 程式碼複雜度統計,程式碼行數統計make clean
: 清理 build 目錄make deep_clean
: 清理所有程式碼以外的其他檔案make third
: 下載所有依賴的第三方工具make protoc
: 下載 protobuf 工具make glide
: 下載 glide 依賴管理工具make golang
: 下載 golang 環境make cloc
: 下載 cloc 統計工具make gocyclo
: 下載 gocyclo 圈複雜度計算工具make easyjson
: 下載 easyjson 工具
export PATH:=${PATH}:${GOPATH}/bin:$(shell pwd)/third/go/bin:$(shell pwd)/third/protobuf/bin:$(shell pwd)/third/cloc-1.76
.PHONY: all
all: third vendor api json build test stat
build: cmd/rta_server/*.go internal/*/*.go scripts/version.sh Makefile vendor api json
@echo "編譯"
@rm -rf build/ && mkdir -p build/bin/ && \
go build -ldflags "-X 'main.AppVersion=`sh scripts/version.sh`'" cmd/rta_server/main.go && \
mv main build/bin/rta_server && \
cp -r configs build/configs/
vendor: glide.lock glide.yaml
@echo "下載 golang 依賴"
glide install
api: vendor
@echo "生成協議檔案"
@rm -rf api && mkdir api && \
cd vendor/gitlab.mobvista.com/vta/rta_proto.git/ && \
protoc --go_out=plugins=grpc:. *.proto && \
cd - && \
cp vendor/gitlab.mobvista.com/vta/rta_proto.git/* api/
json: internal/rcommon/rta_common_easyjson.go
internal/rcommon/rta_common_easyjson.go: internal/rcommon/rta_common.go Makefile
easyjson internal/rcommon/rta_common.go
.PHONY: test
test: vendor api json
@echo "執行單元測試"
go test -cover internal/rranker/*.go
go test -cover internal/rserver/*.go
go test -cover internal/rworker/*.go
go test -cover internal/rloader/*.go
go test -cover internal/rrecall/*.go
go test -cover internal/rmaster/*.go
go test -cover internal/rsender/*.go
benchmark: benchmarkloader benchmarkall
.PHONY: benchmarkloader
benchmarkloader: vendor api json
@echo "執行 loader 效能測試"
go test -timeout 2h -bench BenchmarkS3Loader_Load -benchmem -cpuprofile cpu.out -memprofile mem.out -run=^$$ internal/rloader/*
go tool pprof -svg ./rloader.test cpu.out > cpu.benchmarkloader.svg
go tool pprof -svg ./rloader.test mem.out > mem.benchmarkloader.svg
.PHONY: benchmarkserver
benchmarkserver: vendor api json
@echo "執行 server 效能測試"
go test -timeout 2h -bench BenchmarkServer -benchmem -cpuprofile cpu.out -memprofile mem.out -run=^$$ internal/rserver/*
go tool pprof -svg ./rserver.test cpu.out > cpu.benchmarkserver.svg
go tool pprof -svg ./rserver.test mem.out > mem.benchmarkserver.svg
.PHONY: benchmarkall
benchmarkall: vendor api json
@echo "執行 server 效能測試"
go test -timeout 2h -bench BenchmarkAll -benchmem -cpuprofile cpu.out -memprofile mem.out -run=^$$ internal/rserver/*
go tool pprof -svg ./rserver.test cpu.out > cpu.benchmarkall.svg
go tool pprof -svg ./rserver.test mem.out > mem.benchmarkall.svg
.PHONY: benchmarkcache
benchmarkcache: vendor api json
@echo "測試 redis 叢集效能"
go test -timeout 5m -bench BenchmarkRtaCacheBatch -benchmem -cpuprofile cpu.out -memprofile mem.out -run=^$$ internal/rserver/*
.PHONY: stat
stat: cloc gocyclo
@echo "程式碼行數統計"
@ls internal/*/* scripts/* configs/* Makefile | xargs cloc --by-file
@echo "圈複雜度統計"
@ls internal/*/* | grep -v _test | xargs gocyclo
@ls internal/*/* | grep -v _test | xargs gocyclo | awk '{sum+=$$1}END{printf("總圈複雜度: %s", sum)}'
.PHONY: clean
clean:
rm -rf build
.PHONY: deep_clean
deep_clean:
rm -rf vendor api build third
third: protoc glide golang cloc gocyclo easyjson
.PHONY: protoc
protoc: golang
@hash protoc 2>/dev/null || { \
echo "安裝 protobuf 程式碼生成工具 protoc" && \
mkdir -p third && cd third && \
wget https://github.com/google/prot ... ar.gz && \
tar -xzvf protobuf-cpp-3.2.0.tar.gz && \
cd protobuf-3.2.0 && \
./configure --prefix=`pwd`/../protobuf && \
make -j8 && \
make install && \
cd ../.. && \
protoc --version; \
}
@hash protoc-gen-go 2>/dev/null || { \
echo "安裝 protobuf golang 外掛 protoc-gen-go" && \
go get -u github.com/golang/protobuf/{proto,protoc-gen-go}; \
}
.PHONY: glide
glide: golang
@mkdir -p $$GOPATH/bin
@hash glide 2>/dev/null || { \
echo "安裝依賴管理工具 glide" && \
curl https://glide.sh/get | sh; \
}
.PHONY: golang
golang:
@hash go 2>/dev/null || { \
echo "安裝 golang 環境 go1.10" && \
mkdir -p third && cd third && \
wget https://dl.google.com/go/go1.10.linux-amd64.tar.gz && \
tar -xzvf go1.10.linux-amd64.tar.gz && \
cd .. && \
go version; \
}
.PHONY: cloc
cloc:
@hash cloc 2>/dev/null || { \
echo "安裝程式碼統計工具 cloc" && \
mkdir -p third && cd third && \
wget https://github.com/AlDanial/cloc/archive/v1.76.zip && \
unzip v1.76.zip; \
}
.PHONY: gocyclo
gocyclo: golang
@hash gocyclo 2>/dev/null || { \
echo "安裝程式碼圈複雜度統計工具 gocyclo" && \
go get -u github.com/fzipp/gocyclo; \
}
.PHONY: easyjson
easyjson: golang
@hash easyjson 2>/dev/null || { \
echo "安裝 json 編譯工具 easyjson" && \
go get -u github.com/mailru/easyjson/...; \
}
轉載請註明出處 本文連結:http://www.hatlonely.com/2018/04/11/golang-構建工具之-Makefile/
相關文章
- 怎樣構建 Golang Dockerfiles?GolangDocker
- Linux 自動化構建工具 make/MakefileLinux
- 使用 SCons 代替 Makefile 快速構建應用程式
- Makefile 專案構建最佳化原理與應用
- 用 Golang 構建 gRPC 服務GolangRPC
- 使用Golang和MongoDB構建 RESTful APIGolangMongoDBRESTAPI
- 使用Golang和MongoDB構建微服務GolangMongoDB微服務
- 使用Golang快速構建WEB應用GolangWeb
- Eclipse CDT 匯入 Makefile 構建的 C/C++ 工程EclipseC++
- Golang物件導向程式設計之建構函式【struct&new】Golang物件程式設計函式Struct
- makefile之overrideIDE
- 初識makefile結構
- Golang:使用 httprouter 構建 API 伺服器GolangHTTPAPI伺服器
- Golang建立建構函式的方法詳解Golang函式
- Golang如何快速構建一個CLI小工示例Golang
- C++構建工具-構建系統C++
- 簡單介紹如何使用Bazel構建Golang程式Golang
- golang 學習之路之 struct 結構體GolangStruct結構體
- Docker 映象構建之 DockerfileDocker
- 用Vagrant構建統一的golang開發環境Golang開發環境
- Android Note - 使用構建分析工具Android
- 如何使用Webpack工具構建專案Web
- 交叉編譯工具鏈構建原理編譯
- c# tcbs之建構函式呼叫建構函式示例C#函式
- 基於GitLab CI搭建Golang自動構建環境GitlabGolang
- 如何構建一個高效的 golang web 開發環境GolangWeb開發環境
- 使用node.js構建命令列工具Node.js命令列
- (十) 構建dubbo分散式平臺-maven構建ant-utils工具專案分散式Maven
- Golang記憶體分配內建函式之new函式Golang記憶體函式
- 3 行寫爬蟲 - 使用 Goribot 快速構建 Golang 爬蟲爬蟲Golang
- 建構函式之間的呼叫函式
- 構建api gateway之 負載均衡APIGateway負載
- 構建api gateway之 健康檢查APIGateway
- iOS開發之構建WidgetiOS
- 程式碼構建軟體架構圖的工具介紹架構
- Makefile
- 嵌入式之Makefile學習筆記筆記
- 從0到1構建美團壓測工具