A Cloud Foundry buildpack for Go(lang) based apps.
Official buildpack documentation can be found at go buildpack docs.
To build this buildpack, run the following command from the buildpack's directory:
./scripts/package.sh --stack [cflinuxfs3 | cflinuxfs4] --version <version>
You can then find the built artifact in ./build/buildpack.zip
.
Upload the buildpack to your Cloud Foundry and optionally specify it by name
cf create-buildpack [BUILDPACK_NAME] [BUILDPACK_ZIP_FILE_PATH] 1
cf push my_app [-b BUILDPACK_NAME]
Buildpacks use the Switchblade framework for running integration tests.
To test this buildpack, run the following command from the buildpack's directory:
-
Run unit tests
./scripts/unit.sh
-
Run integration tests
./scripts/integration.sh --github-token <token> --platform <cf|docker>
More information can be found on the switchblade repo.
Find our guidelines here.
Join the #buildpacks channel in our Slack community if you need any further assistance.
Please fill out the issue template fully if you'd like to start an issue for the buildpack.
Inspired by the Heroku buildpack.