All Projects → GoogleCloudPlatform → Cloud Builders Community

GoogleCloudPlatform / Cloud Builders Community

Licence: apache-2.0
Community-contributed images for Google Cloud Build

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Cloud Builders Community

Cloud Builders
Builder images and examples commonly used for Google Cloud Build
Stars: ✭ 968 (+14.96%)
Mutual labels:  build, google-cloud-platform
Hopp
Crazy rapid build system.
Stars: ✭ 24 (-97.15%)
Mutual labels:  build
Garble
Obfuscate Go builds
Stars: ✭ 617 (-26.72%)
Mutual labels:  build
Androidsdk
🐳 Full-fledged Android SDK Docker Image
Stars: ✭ 776 (-7.84%)
Mutual labels:  build
Awesome Bazel
A curated list of Bazel rules, tooling and resources.
Stars: ✭ 640 (-23.99%)
Mutual labels:  build
Ngc
NewGoCommand - An opinionated and lightweight project starter. (WORK IN PROGRESS)
Stars: ✭ 16 (-98.1%)
Mutual labels:  build
Publish Docker Github Action
A Github Action used to build and publish Docker images
Stars: ✭ 578 (-31.35%)
Mutual labels:  build
Obi
OCaml Build Infrastructure
Stars: ✭ 25 (-97.03%)
Mutual labels:  build
Flutter engine build
Flutter Engine构建产物归档
Stars: ✭ 19 (-97.74%)
Mutual labels:  build
Probabilistic robotics
solution of exercises of the book "probabilistic robotics"
Stars: ✭ 734 (-12.83%)
Mutual labels:  google-cloud-platform
Microbundle
📦 Zero-configuration bundler for tiny modules.
Stars: ✭ 6,622 (+686.46%)
Mutual labels:  build
old vespene
DISCONTINUED: a frozen fork will exist forever at mpdehaan/vespene
Stars: ✭ 672 (-20.19%)
Mutual labels:  build
Dataflow Tutorial
Cloud Dataflow Tutorial for Beginners
Stars: ✭ 17 (-97.98%)
Mutual labels:  google-cloud-platform
Lyo
📦 Node.js to browser - The easy way
Stars: ✭ 624 (-25.89%)
Mutual labels:  build
Terraform Google Vault
Terraform module to deploy Vault as a container on Google Cloud Run
Stars: ✭ 25 (-97.03%)
Mutual labels:  google-cloud-platform
Build
A Kubernetes-native Build resource.
Stars: ✭ 581 (-31%)
Mutual labels:  build
Gogradle
A Gradle Plugin Providing Full Support for Go
Stars: ✭ 712 (-15.44%)
Mutual labels:  build
Google Cloud Php
Google Cloud Client Library for PHP
Stars: ✭ 780 (-7.36%)
Mutual labels:  google-cloud-platform
C cpp project framework
CMake build system( framework) with kconfig support for C/CPP projects
Stars: ✭ 26 (-96.91%)
Mutual labels:  build
Just Task
Elegant javascript tasks
Stars: ✭ 25 (-97.03%)
Mutual labels:  build

Google Cloud Build community images

This repository contains source code for community-contributed Docker images. You can use these images as build steps for Google Cloud Build.

These are not official Google products.

How to use a community-contributed build step

Google Cloud Build executes a build as a series of build steps. Each build step is run in a Docker container. See the Cloud Build documentation for more details about builds and build steps.

Before you begin

  1. Select or create a Google Cloud project.
  2. Enable billing for your project.
  3. Enable the Cloud Build API.
  4. Install and initialize the Cloud SDK.

Build the build step from source

To use a community-contributed Docker image as a build step, you need to download the source code from this repo and build the image.

The example below shows how to download and build the image for the packer build step on a Linux or Mac OS X workstation:

  1. Clone the cloud-builders-community repo:

    $ git clone https://github.com/GoogleCloudPlatform/cloud-builders-community
    
  2. Go to the directory that has the source code for the packer Docker image:

    $ cd cloud-builders-community/packer
    
  3. Build the Docker image:

    $ gcloud builds submit --config cloudbuild.yaml .
    
  4. View the image in Google Container Registry:

    $ gcloud container images list --filter packer
    

Use the build step with Cloud Build build

Once you've built the Docker image, you can use it as a build step in a Cloud Build build.

For example, below is the packer build step in a YAML config file, ready to be used in a Cloud Build build:

- name: 'gcr.io/$PROJECT_ID/packer'
  args:
  - build
  - -var
  - project_id=$PROJECT_ID
  - packer.json

Each build step's examples directory has an example of how you can use the build step. See the example for the packer builder.

Contributing

We welcome contributions! See CONTRIBUTING for more information on how to get started. Please include a cloudbuild.yaml and at least one working example in your pull request.

Contribution Requirements

In order to accept your contribution, it must:

  • make clear that the builder image is pushed to the builder's project's registry. E.g., it specifies images: ['gcr.io/$PROJECT_ID/the-tool']. The builder will not be pushed to the gcr.io/cloud-builders registry.
  • include a simple sanity test in the cloudbuild.yaml config that builds and pushes the image. This can be as simple as invoking the tool with --help, and it ensures the tool is installed correctly and in the expected location within the image.
  • include some basic example describing how to use it. This helps new users get acquainted with the builder, and helps us ensure the builder continues to work as intended.

License

This source code is licensed under Apache 2.0. Full license text is available in LICENSE.

Support

To file issues and feature requests against these builder images, the usage of these build steps or the Cloud Build API in general, create an issue in this repo.

If you are experiencing an issue with the Cloud Build service or have a feature request, e-mail [email protected] or see our Getting support documentation.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].