File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 1- VERSION =0.2 .0
1+ VERSION =0.3 .0
22
33build_linux :
4+ @echo ' building linux binary...'
45 env GOOS=linux GOARCH=amd64 go build -o nuru
6+ @echo ' zipping build....'
57 tar -zcvf nuru_linux_amd64_v${VERSION} .tar.gz nuru
8+ @echo ' cleaning up...'
69 rm nuru
710
811build_windows :
12+ @echo ' building windows executable...'
913 env GOOS=windows GOARCH=amd64 go build -o nuru_windows_amd64_v${VERSION} .exe
1014
1115build_mac :
16+ @echo ' building mac binary...'
1217 env GOOS=darwin GOARCH=amd64 go build -o nuru
18+ @echo ' zipping build...'
1319 tar -zcvf nuru_mac_amd64_v${VERSION} .tar.gz nuru
20+ @echo ' cleaning up...'
1421 rm nuru
1522
1623build_android :
24+ @echo ' building android binary'
1725 env GOOS=android GOARCH=arm64 go build -o nuru
26+ @echo ' zipping build...'
1827 tar -zcvf nuru_linux_amd64_v${VERSION} .tar.gz nuru
28+ @echo ' cleaning up...'
1929 rm nuru
2030
2131build_test :
You can’t perform that action at this time.
0 commit comments