Skip to content

Latest commit

 

History

History
45 lines (35 loc) · 1.64 KB

README.md

File metadata and controls

45 lines (35 loc) · 1.64 KB

Test Lint

GO-CF-API BOSH Release

BOSH release for Golang PoC implementation of the Cloud Controller

Project setup

After cloning make sure you got the submodules checked out as well git submodule update --init --recursive

You need to install the bosh cli

Install the ruby version according to the .ruby-version file

After installing ruby run bundle install

Running spec tests

Templates should always include rspec tests to ensure the templating works as intended. See the spec/ directory for existing tests and examples. To run the tests:

bundle exec rspec -P spec/*_spec.rb

Building a final release tarball

Final releases are not built automatically at the moment.

To create a new tag do the following:

# Get the latest tag
git fetch --tags
git describe --tags --abbrev=0

# Using the next version after the latest tag
git tag "v<next_version>"
git push
git push --tags

Building a release locally

We do not currently have a shared/public blobstore. This means that you will not be able to pull/push blobs for previous releases or use the vendored golang package. To create a new dev release:

bosh vendor-package golang-1.17-linux ./src/golang-release
bosh create-release --tarball "go-cf-api-release.tgz"