From 6eb12f46fc09058621711e49cd993c8938f4ce28 Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Tue, 3 Sep 2024 14:18:48 +0100 Subject: [PATCH] update callout and clarify title to blog (#6001) this pr updates the title so it's clear it's for dbt core users. and also adds a callout to link to a bitbucket guide for dbt cloud users. [internal slack thread](https://dbt-labs.slack.com/archives/C06V62247K5/p1725345980389369?thread_ts=1725334647.490049&cid=C06V62247K5) --- website/blog/2022-04-14-add-ci-cd-to-bitbucket.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/website/blog/2022-04-14-add-ci-cd-to-bitbucket.md b/website/blog/2022-04-14-add-ci-cd-to-bitbucket.md index 44346e93741..eae8d595ca5 100644 --- a/website/blog/2022-04-14-add-ci-cd-to-bitbucket.md +++ b/website/blog/2022-04-14-add-ci-cd-to-bitbucket.md @@ -1,5 +1,5 @@ --- -title: "Slim CI/CD with Bitbucket Pipelines" +title: "Slim CI/CD with Bitbucket Pipelines for dbt Core" description: "How to set up slim CI/CD outside of dbt Cloud" slug: slim-ci-cd-with-bitbucket-pipelines @@ -12,6 +12,11 @@ date: 2022-05-06 is_featured: true --- + +:::info Set up CI/CD with dbt Cloud +This blog is specifically tailored for dbt Core users. If you're using dbt Cloud and your Git provider doesn't have a native dbt Cloud integration (like BitBucket), follow the [Customizing CI/CD with custom pipelines guide](/guides/custom-cicd-pipelines?step=3) to set up CI/CD. +::: + Continuous Integration (CI) sets the system up to test everyone’s pull request before merging. Continuous Deployment (CD) deploys each approved change to production. “Slim CI” refers to running/testing only the changed code, [thereby saving compute](https://discourse.getdbt.com/t/how-we-sped-up-our-ci-runs-by-10x-using-slim-ci/2603). In summary, CI/CD automates dbt pipeline testing and deployment. [dbt Cloud](https://www.getdbt.com/), a much beloved method of dbt deployment, [supports GitHub- and Gitlab-based CI/CD](https://blog.getdbt.com/adopting-ci-cd-with-dbt-cloud/) out of the box. It doesn’t support Bitbucket, AWS CodeCommit/CodeDeploy, or any number of other services, but you need not give up hope even if you are tethered to an unsupported platform.