A Cloud Foundry buildpack for Go(lang) based apps.
This is based on the [Heroku buildpack] (https://github.com/heroku/heroku-buildpack-go).
Additional documentation can be found at CloudFoundry.org.
=======
This buildpack will get used if you have any files with the .go
extension in your repository.
cf push my_app -b https://github.com/cloudfoundry/go-buildpack.git
To use this buildpack on Cloud Foundry, where the Cloud Foundry instance limits some or all internet activity, please read the Disconnected Environments documentation.
As stated in the Disconnected Environments documentation, your application must 'vendor' its dependencies.
For the Go buildpack, use Godep:
cf push
uploads your vendored dependencies. The buildpack will compile any dependencies requiring compilation while staging your application.
- Make sure you have fetched submodules
git submodule update --init
- Get latest buildpack dependencies
BUNDLE_GEMFILE=cf.Gemfile bundle
- Build the buildpack
BUNDLE_GEMFILE=cf.Gemfile bundle exec buildpack-packager [ --uncached | --cached ]
-
Use in Cloud Foundry
Upload the buildpack to your Cloud Foundry and optionally specify it by name
cf create-buildpack custom_go_buildpack go_buildpack-cached-custom.zip 1 cf push my_app -b custom_go_buildpack
The buildpack only supports the stable patches for each dependency listed in the manifest.yml and releases page.
If you try to use a binary that is not currently supported, staging your app will fail and you will see the following error message:
Could not get translated url, exited with: DEPENDENCY_MISSING_IN_MANIFEST: ...
!
! exit
!
Staging failed: Buildpack compilation step failed
Buildpacks use the Machete framework for running integration tests.
To test a buildpack, run the following command from the buildpack's directory:
BUNDLE_GEMFILE=cf.Gemfile bundle exec buildpack-build
More options can be found on Machete's Github page.
Find our guidelines here.
If you use .godir
your app will no longer stage.
.godir
has been retired in favor of using
godep in your project to
manage dependencies, and including the generated Godep
directory in your git repository.
Godeps is the buildpack's only supported
package manager. The buildpack will run godep
to install your dependencies at
staging.
This buildpack supports building with C dependencies via
cgo. You can set config vars to specify CGO flags
to, e.g., specify paths for vendored dependencies. E.g., to build
gopgsqldriver, add the config var
CGO_CFLAGS
with the value -I/app/code/vendor/include/postgresql
and include
the relevant Postgres header files in vendor/include/postgresql/
in your app.
Join the #buildpacks channel in our [Slack community] (http://slack.cloudfoundry.org/)
Open an issue on this project
The project backlog is on Pivotal Tracker