CompileDaemon
CompileDaemon copied to clipboard
Very simple compile daemon for Go
I have Go v1.19 on Windows 10. This is what my Dockerfile looks like:  When I run `docker-compose up --build`, I get this:   ...yet it's stuck here....
Sometimes a running program fails because of the panic. Because CompileDaemon keeps running it is hard to notice that (except for the panic stack trace). I think it would be...
See https://medium.com/@felixge/killing-a-child-process-and-all-of-its-children-in-go-54079af94773 for a detailed explanation of how this works. For now this only implemented for posix and these changes should have no effect on windows. This fixes #65 and...
I'm using go 1.18 on macOS, and go install fails with below message: ``` $ go install github.com/githubnemo/CompileDaemon@latest # golang.org/x/sys/unix ../../go/1.18.0/pkg/mod/golang.org/x/[email protected]/unix/syscall_darwin.1_13.go:25:3: //go:linkname must refer to declared function or variable ../../go/1.18.0/pkg/mod/golang.org/x/[email protected]/unix/zsyscall_darwin_amd64.1_13.go:27:3:...
Go dropped go get for cmd-tools. executing go install github.com/githubnemo/COmpileDaemon/cmd does not work.
Hi, Cannot run CompileDeamon as Entrypoint of dockerfile with golang 1.18 Working on golang:1.17.8-alpine3.15 with same ENTRYPOINT tested with `go get github.com/githubnemo/CompileDaemon@latest`
Currently the program is left running, so if the build fails, you have an old version of the program running. It happened to me multiple times that I tried to...
The project I'm working on has important files two folders back from where the main.go file is, so it would be nice to have something like ```-include-dir="../../core"``` to be able...
Latest released tag [v1.4.0](https://github.com/githubnemo/CompileDaemon/commit/50a8debecc13686ba29356b28d30c33555e662f6) with hash `50a8debecc13686ba29356b28d30c33555e662f6` is not merged in master branch.
I'm trying to use CompileDaemon with `go generate`, but have not been successful. I am running two instances of CompileDaemon to try accomplishing this. One instances watches the source files,...