Re: [go-nuts] Re: Build management mechanism for go lang

2020-05-27 Thread Chashika Weerathunga
Thank you @Henrik. I will try this. On Wednesday, May 27, 2020 at 12:22:40 PM UTC+5:30, Henrik Johansson wrote: > > I usually use make for that in combination with Goreleaser > https://github.com/goreleaser/goreleaser/ . > > > On Wed, May 27, 2020 at 7:18 AM Chashika Weerathunga > wrote: > >>

Re: [go-nuts] Re: Build management mechanism for go lang

2020-05-27 Thread Henrik Johansson
I usually use make for that in combination with Goreleaser https://github.com/goreleaser/goreleaser/ . On Wed, May 27, 2020 at 7:18 AM Chashika Weerathunga < chashikajw...@gmail.com> wrote: > go mod, go build fine. Also I want to pack(zip) a executable and other few > directories into a folder.

[go-nuts] Re: Build management mechanism for go lang

2020-05-26 Thread Chashika Weerathunga
go mod, go build fine. Also I want to pack(zip) a executable and other few directories into a folder. And also need to manage project version. In maven we can do tasks like this. So I want to manage all the things in flexible way. On Wednesday, May 27, 2020 at 10:30:21 AM UTC+5:30, Chashika