|
|
vor 5 Jahren | |
|---|---|---|
| .dependabot | vor 5 Jahren | |
| .github | vor 5 Jahren | |
| azure | vor 5 Jahren | |
| backend | vor 5 Jahren | |
| cli | vor 5 Jahren | |
| client | vor 5 Jahren | |
| compose | vor 5 Jahren | |
| config | vor 5 Jahren | |
| containers | vor 5 Jahren | |
| context | vor 5 Jahren | |
| docs | vor 5 Jahren | |
| errdefs | vor 5 Jahren | |
| example | vor 5 Jahren | |
| moby | vor 5 Jahren | |
| multierror | vor 5 Jahren | |
| protos | vor 5 Jahren | |
| server | vor 5 Jahren | |
| tests | vor 5 Jahren | |
| .dockerignore | vor 5 Jahren | |
| .gitattributes | vor 5 Jahren | |
| .gitignore | vor 6 Jahren | |
| .golangci.yml | vor 5 Jahren | |
| Dockerfile | vor 5 Jahren | |
| Makefile | vor 5 Jahren | |
| README.md | vor 5 Jahren | |
| builder.Makefile | vor 5 Jahren | |
| go.mod | vor 5 Jahren | |
| go.sum | vor 5 Jahren |
The recommended way is to use the main Makefile that runs everything inside a container.
If you don't have or want to use Docker for building you need to make sure you have all the needed tools installed locally:
go get github.com/golang/protobuf/[email protected]go get golang.org/x/tools/cmd/goimportsgo get github.com/golangci/golangci-lint/cmd/[email protected]And then you can call the same make targets but you need to pass it the builder.Makefile (make -f builder.Makefile).
The new CLI delegates to the classic docker for default contexts ; delegation is done to docker-classic.
make classic-link will create a docker-classic link in /usr/local/bin if you don't already have it from Docker Desktop$ make
If you make changes to the .proto files, make sure to make protos to generate go code.
To run unit tests:
make test
If you need to update a golden file simply do go test ./... -test.update-golden.