heroku-buildpack-go icon indicating copy to clipboard operation
heroku-buildpack-go copied to clipboard

Heroku Go Buildpack

Results 20 heroku-buildpack-go issues
Sort by recently updated
recently updated
newest added

Ran into two separate issues with Go 1.16rc1, both related to changes in `go install`. #### 1. The `+heroku install` directive no longer works with packages outside of the module....

There are lots of `GO` options available to users of go. Some of these are honored by the Heroku go buildpack and some may not be at this time. An...

`go env` is useful for understanding what settings were set during a build. Since the go buildpack sets and forwards certain parameter before executing the `go install` or `go build`...

Are custom build tags / constraints possible? The previous issue about this (#365) was closed as it was resolved without actually needing custom build tags, but I've got a case...

I want to have the following release phase: ``` release: migrate -source file://migrations -database $DATABASE_URL up web: bin/gql ``` how do I do that when using **go modules**?

Hello, I can't find any way of passing custom build flags to the Go compiler. I tried using the `GOFLAGS` environment with `heroku config:set GOFLAGS="my extra flags"` but I doesn't...

My src directory is in this format ``` src -launcher -main.go ``` where main.go has package main like this ``` package main func main(){ } ``` Yet, whenever I do...

`env_dir` is passed positionally to the build pack per normal, but is not forwarded to `go-post-compile`. Nor is it set to an environment variable. And it's not obviously relatively positional...

This is currently hardcoded to 1.20.0 and I would like to use a newer version as v1.33.0 is currently the latest. Maybe make the install command something like; `curl -sfL...

Our app is deploying successfully on 1.15, but gives the following error when deploying on 1.16. I'm pretty sure we need `GO111MODULE=auto` set, but it doesn't look like the buildpack...