1
0
Fork 0
mirror of synced 2024-06-02 18:44:54 +12:00
budibase/.github/workflows
2022-06-07 09:01:43 +01:00
..
budibase_ci.yml Update debug command 2022-06-07 09:01:43 +01:00
cla.yml cla - changes to corporate process 2021-04-13 16:41:22 +01:00
deploy-cloud.yaml removing couchDB backup from values.yaml 2022-04-28 09:12:45 +01:00
deploy-preprod.yml Environment config 2022-06-06 15:27:29 +01:00
README.md Consolidate CI docs in CONTRIBUTING.md 2022-01-04 10:48:48 -05:00
release-develop.yml Environment config 2022-06-06 15:27:29 +01:00
release-selfhost.yml Add self host deploy notification 2022-05-13 09:59:40 +01:00
release.yml Environment config 2022-06-06 15:27:29 +01:00
smoke_test.yaml merging report inline HTML, fixing webhook to prevent 400s from discord 2022-05-20 16:47:09 +01:00

Budibase CI Pipelines

Welcome to the budibase CI pipelines directory. This document details what each of the CI pipelines are for, and come common combinations.

All CI Pipelines

Note

  • When running workflow dispatch jobs, ensure you always run them off the master branch. It defaults to develop, so double check before running any jobs.

Standard CI Build Job (budibase_ci.yml)

Triggers:

  • PR or push to develop
  • PR or push to master

The standard CI Build job is what runs when you raise a PR to develop or master.

  • Installs all dependencies,
  • builds the project
  • run the unit tests
  • Generate test coverage metrics with codecov
  • Run the cypress tests

Release Develop Job (release-develop.yml)

Triggers:

  • Push to develop

The job responsible for building, tagging and pushing docker images out to the test and staging environments.

  • Installs all dependencies
  • builds the project
  • run the unit tests
  • publish the budibase JS packages under a prerelease tag to NPM
  • build, tag and push docker images under the develop tag to docker hub

These images will then be pulled by the test and staging environments, updating the latest automatically. Discord notifications are sent to the #infra channel when this occurs.

Release Job (release.yml)

Triggers:

  • Push to master

This job is responsible for building and pushing the latest code to NPM and docker hub, so that it can be deployed.

  • Installs all dependencies
  • builds the project
  • run the unit tests
  • publish the budibase JS packages under a release tag to NPM (always incremented by patch versions)
  • build, tag and push docker images under the v.x.x.x (the tag of the NPM release) tag to docker hub

Release Selfhost Job (release-selfhost.yml)

Triggers:

  • Manual Workflow Dispatch Trigger

This job is responsible for delivering the latest version of budibase to those that are self-hosting.

This job relies on the release job to have run first, so the latest image is pushed to dockerhub. This job then will pull the latest version from lerna.json and try to find an image in dockerhub corresponding to that version. For example, if the version in lerna.json is 1.0.0:

  • Pull the images for all budibase services tagged v1.0.0 from dockerhub
  • Tag these images as latest
  • Push them back to dockerhub. This now means anyone who pulls latest (self hosters using docker-compose) will get the latest version.
  • Build and release the budibase helm chart for kubernetes users
  • Perform a github release with the latest version. You can see previous releases here (https://github.com/Budibase/budibase/releases)

Cloud Deploy (deploy-cloud.yml)

Triggers:

  • Manual Workflow Dispatch Trigger

This job is responsible for deploying to our production, cloud kubernetes environment. You must run the release job first, to ensure that the latest images have been built and pushed to docker hub. You can also manually enter a version number for this job, so you can perform rollbacks or upgrade to a specific version. After kicking off this job, the following will occur:

  • Checks out the master branch
  • Pulls the latest values.yaml from budibase infra, a private repo containing budibases infrastructure configuration
  • Gets the latest budibase version from lerna.json, if it hasn't been specified in the workflow when you kicked it off
  • Configures AWS Credentials
  • Deploys the helm chart in the budibase repo to our production EKS cluster, injecting the values.yaml we pulled from budibase-infra
  • Fires off a discord webhook in the #infra channel to show that the deployment completely successfully.

Common Workflows

Deploy Changes to Production (Release)

  • Merge develop into master
  • Wait for budibase CI job and release job to run
  • Run cloud deploy job
  • Run release selfhost job

Deploy Changes to Production (Hotfix)

  • Branch off master
  • Perform your hotfix
  • Merge back into master
  • Wait for budibase CI job and release job to run
  • Run cloud deploy job
  • Run release selfhost job

Rollback A Bad Cloud Deployment

  • Kick off cloud deploy job
  • Ensure you are running off master
  • Enter the version number of the last known good version of budibase. For example 1.0.0