cloud-build-local

command module
v0.0.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 25, 2025 License: Apache-2.0 Imports: 25 Imported by: 0

README

Google Cloud Build Local

GCBL runs Google Cloud Build locally, allowing easier debugging, execution of builds on your own hardware, and integration into local build and test workflows.

Community Fork

This Google Cloud Build Local fork is maintained by volunteers, so may not always maintain 100% parity with Google's Cloud Build service. Stability and compatibility are our primary goals. If you'd like to contribute, please feel free to put something together and submit a merge request!

As of 2023, the original repository from Google has been archived. This fork is an attempt to keep the project alive, at least, in some form close to the original, and maybe improve on it a bit.

[!NOTE] Cloud Build Local works without Google Cloud!
You can create pipelines as you see fit, locally, and yes, offline!
Check out the §New Features below regarding the --no-cloud argument.

Samples

See our example node.js GCP function in the samples/ directory which includes an example pipeline.

[!TIP] See also: Google Cloud Build File Schema GCBL maintains parity with syntax and format, so you can leverage the official documentation to construct your deployment pipelines (*.yaml files).

New Features
  • Added support for loading .env file secrets for secretEnv replacements.
    This will convert only the matching secretEnv into a corresponding env with a value.
    To use this, just add the --env=<envfilepath> argument with envfilepath as the path to the .env file.
    This is not supported in the cloud, and only works for GCBL. Which means the cloud will simply treat a secretEnv as intended :)
  • No contributor agreements. Just code!
  • Added support for skipping cloud token gathering and metadata with argument --no-cloud. This let's you run cloud-build-local without an active gcloud authentication token (which requires a GCP account).

Usage

  1. You'll need to make sure your system has docker installed.
  2. Grab the latest release or build from source.
  3. Install into your system. Here's an easy way to do it:
    unzip <release>.zip
    sudo chown root: ./cloud-build-local
    sudo chmod u+x,g+x,o+x ./cloud-build-local
    sudo mv ./cloud-build-local /usr/bin/
    
  4. Get started using GCBL!

To run a local build you should make sure you've got credentials to GCP if using any resources (gcloud auth login), then specify a false dryrun, the config, and the source code/content directory path. If you don't have a Google Cloud login, then use the --no-cloud argument.

./cloud-build-local \
  --dryrun=false \
  --config=path/to/cloudbuild.yaml \
  --env=/path/to/.env \
  /path/to/app

Development

To build GCBL from source, and run tests, you need a working Go environment. You should also install gcloud and Docker.

This binary has only been tested to work on Linux operating systems. Windows and Mac are currently unsupported, though community contributions are welcome in this area.

Setup
go mod vendor
go get
Build
go build -o cloud-build-local github.com/MikeMoore63/cloud-build-local

Optionally, create a system-wide link to the built executable:

sudo ln -s "$(pwd)/cloud-build-local" /usr/bin/cloud-build-local
Test

If you'd like to run the manual test build...

  1. Create a tests/.env file with a secret replacement value:
    HELLO_BUILD=my secret env variable replacement
    
  2. Run the test locally:
    ./cloud-build-local --dryrun=false --config=./tests/cloudbuild.yaml --env=./tests/.env ./tests/src
    

Other tests (legacy):

go test $(go list github.com/MikeMoore63/cloud-build-local/... | grep -v vendor)

Documentation

Overview

Package main runs the gcb local builder.

Directories

Path Synopsis
Package build implements the logic for executing a single user build.
Package build implements the logic for executing a single user build.
Package common shares methods for local builder.
Package common shares methods for local builder.
Package config provides methods to read a cloudbuild file and convert it to a build proto.
Package config provides methods to read a cloudbuild file and convert it to a build proto.
Package gcloud provides methods to interact with local installed gcloud.
Package gcloud provides methods to interact with local installed gcloud.
Package gsutil provides helper functions for running gsutil commands with Docker.
Package gsutil provides helper functions for running gsutil commands with Docker.
Package logger defines a Logger interface to be used by local builder.
Package logger defines a Logger interface to be used by local builder.
Package metadata provides methods to deal with a metadata container server.
Package metadata provides methods to deal with a metadata container server.
Package runner implements method to run commands.
Package runner implements method to run commands.
Package subst does string substituion in build fields.
Package subst does string substituion in build fields.
Package validate provides methods to validate a build.
Package validate provides methods to validate a build.
Package volume provides methods to deal with docker volumes.
Package volume provides methods to deal with docker volumes.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL