{"id":44940423,"url":"https://github.com/function61/buildkit-golang","last_synced_at":"2026-02-18T08:32:49.910Z","repository":{"id":144235288,"uuid":"146609745","full_name":"function61/buildkit-golang","owner":"function61","description":"Frequently needed tools for building Go-based projects. Internally runs just the regular `$ go build` but also runs tests, lint etc.","archived":false,"fork":false,"pushed_at":"2025-11-24T14:06:08.000Z","size":282,"stargazers_count":2,"open_issues_count":6,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-28T01:57:39.508Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://function61.com/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/function61.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-08-29T14:10:10.000Z","updated_at":"2025-11-24T14:06:12.000Z","dependencies_parsed_at":"2023-12-29T10:25:23.210Z","dependency_job_id":"d47f7f79-f3c7-415b-83d4-aaf430f8a071","html_url":"https://github.com/function61/buildkit-golang","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/function61/buildkit-golang","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/function61%2Fbuildkit-golang","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/function61%2Fbuildkit-golang/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/function61%2Fbuildkit-golang/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/function61%2Fbuildkit-golang/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/function61","download_url":"https://codeload.github.com/function61/buildkit-golang/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/function61%2Fbuildkit-golang/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29574019,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T08:21:05.678Z","status":"ssl_error","status_checked_at":"2026-02-18T08:18:53.770Z","response_time":162,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-02-18T08:32:49.838Z","updated_at":"2026-02-18T08:32:49.898Z","avatar_url":"https://github.com/function61.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Build status](https://github.com/function61/buildkit-golang/workflows/Build/badge.svg)\n[![Download](https://img.shields.io/docker/pulls/fn61/buildkit-golang.svg?style=for-the-badge)](https://hub.docker.com/r/fn61/buildkit-golang/)\n\nGolang buildkit with shared low-level tools / build process required for Go projects of some quality.\n\nSee [Turbo Bob](https://github.com/function61/turbobob) for more details.\n\n![](docs/logo.webp)\n\n\nHow to use\n----------\n\n[build-go-project.sh](build-go-project.sh) is available inside the container image.\n\nOur typical projects declare the `build-go-project.sh` call in the build command definition in\n[turbobob.json](https://github.com/function61/turbobob/blob/51e6c7f5c5b0e7b0c244d670410e6c1a383429a6/turbobob.json#L11).\n\nCross compilation is done depending on ENV variables. E.g. to build for `Linux/ARM` you should have\n`BUILD_LINUX_ARM=true` set. These are handled automatically if you use Turbo Bob.\n\n\nFeatures\n--------\n\n- Go build environment\n- Contains [goimports](https://pkg.go.dev/golang.org/x/tools/cmd/goimports) which is like `gofmt`\n  for your imports - it can sometimes even automatically add missing imports!\n- Contains [gopls](https://github.com/golang/tools/blob/master/gopls/README.md), a Go\n  [language server](https://langserver.org/). Works in a container without changes to one's host system!\n\t* Working is somewhat tied to use with Turbo Bob (LSP working inside container needs a few tricks)\n- Contains [Gohack](https://github.com/rogpeppe/gohack) to make editing dependency modules easy\n- [Govulncheck](https://pkg.go.dev/golang.org/x/vuln/cmd/govulncheck) reports known vulnerabilities that affect Go code.\n- Fully static builds (so works even on Alpine linux which doesn't have standard libc)\n- Cross compilation support:\n\t* Linux-amd64\n\t* Linux-arm\n\t* Windows-amd64\n\t* macOS-amd64\n- [Protobuf](https://developers.google.com/protocol-buffers) compiler included\n- [Deployer](https://github.com/function61/deployer) integration\n\t* For packaging `deployerspec.zip` files\n- [doc2go](https://github.com/abhinav/doc2go/) for generating documentation (use case: private documentation). See [why godoc isn't enough](https://github.com/golang/go/issues/2381).\n\nStandardized build process:\n\n- Passes build version to your code\n\t* Using [gokit/app/dynversion](https://pkg.go.dev/github.com/function61/gokit/app/dynversion)\n- Runs static analysis\n\t* Uses [golangci-lint](https://github.com/golangci/golangci-lint)\n\t  (does what `$ go vet` does + much more)\n- Runs your unit tests (`$ go test`)\n\t* With race detector enabled\n- Fetches your dependencies using Go modules\n- Automatically rejects Go code that is not `$ go fmt`'d\n- Runs any code generators you might have\n\t* Runs `$ go generate ./...`\n- Helper for packaging your binary as Lambda function\n- Provides custom hooks between build steps if you have something special (though this might be a smell)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunction61%2Fbuildkit-golang","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffunction61%2Fbuildkit-golang","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffunction61%2Fbuildkit-golang/lists"}