Skip to content
This repository has been archived by the owner on Nov 11, 2024. It is now read-only.

Commit

Permalink
Update circle jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
clrcrl committed Dec 2, 2020
1 parent 5cd9201 commit 067ba45
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,31 +13,27 @@ jobs:
command: |
python3 -m venv venv
. venv/bin/activate
pip install -e .
pip install cookiecutter
- run:
name: "Create Starter Project - BigQuery"
name: "Create Starter Project - Snowflake"
command: |
mkdir jaffle_shop_bigquery
. venv/bin/activate
dbt-init --client jaffle-shop --warehouse bigquery --target-dir ./jaffle_shop_bigquery
cookiecutter --no-input gh:fishtown-analytics/dbt-init --checkout ${CIRCLE_BRANCH} name=jaffle_shop project_name=jaffle_shop_snowflake warehouse=snowflake
- run:
name: "Create Starter Project - Postgres"
name: "Create Starter Project - Redshift"
command: |
mkdir jaffle_shop_postgres
. venv/bin/activate
dbt-init --client jaffle-shop --warehouse postgres --target-dir ./jaffle_shop_postgres
cookiecutter --no-input gh:fishtown-analytics/dbt-init --checkout ${CIRCLE_BRANCH} name=jaffle_shop project_name=jaffle_shop_redshift warehouse=redshift
- run:
name: "Create Starter Project - Redshift"
name: "Create Starter Project - BigQuery"
command: |
mkdir jaffle_shop_redshift
. venv/bin/activate
dbt-init --client jaffle-shop --warehouse redshift --target-dir ./jaffle_shop_redshift
cookiecutter --no-input gh:fishtown-analytics/dbt-init --checkout ${CIRCLE_BRANCH} name=jaffle_shop project_name=jaffle_shop_bigquery warehouse=bigquery
- run:
name: "Create Starter Project - Snowflake"
name: "Create Starter Project - Postgres"
command: |
mkdir jaffle_shop_snowflake
. venv/bin/activate
dbt-init --client jaffle-shop --warehouse snowflake --target-dir ./jaffle_shop_snowflake
cookiecutter --no-input gh:fishtown-analytics/dbt-init --checkout ${CIRCLE_BRANCH} name=jaffle_shop project_name=jaffle_shop_postgres warehouse=postgres
- save_cache:
key: deps1-{{ .Branch }}
paths:
Expand Down

0 comments on commit 067ba45

Please sign in to comment.