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

Commit 067ba45

Browse files
committed
Update circle jobs
1 parent 5cd9201 commit 067ba45

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

.circleci/config.yml

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,27 @@ jobs:
1313
command: |
1414
python3 -m venv venv
1515
. venv/bin/activate
16-
pip install -e .
16+
pip install cookiecutter
1717
- run:
18-
name: "Create Starter Project - BigQuery"
18+
name: "Create Starter Project - Snowflake"
1919
command: |
20-
mkdir jaffle_shop_bigquery
2120
. venv/bin/activate
22-
dbt-init --client jaffle-shop --warehouse bigquery --target-dir ./jaffle_shop_bigquery
21+
cookiecutter --no-input gh:fishtown-analytics/dbt-init --checkout ${CIRCLE_BRANCH} name=jaffle_shop project_name=jaffle_shop_snowflake warehouse=snowflake
2322
- run:
24-
name: "Create Starter Project - Postgres"
23+
name: "Create Starter Project - Redshift"
2524
command: |
26-
mkdir jaffle_shop_postgres
2725
. venv/bin/activate
28-
dbt-init --client jaffle-shop --warehouse postgres --target-dir ./jaffle_shop_postgres
26+
cookiecutter --no-input gh:fishtown-analytics/dbt-init --checkout ${CIRCLE_BRANCH} name=jaffle_shop project_name=jaffle_shop_redshift warehouse=redshift
2927
- run:
30-
name: "Create Starter Project - Redshift"
28+
name: "Create Starter Project - BigQuery"
3129
command: |
32-
mkdir jaffle_shop_redshift
3330
. venv/bin/activate
34-
dbt-init --client jaffle-shop --warehouse redshift --target-dir ./jaffle_shop_redshift
31+
cookiecutter --no-input gh:fishtown-analytics/dbt-init --checkout ${CIRCLE_BRANCH} name=jaffle_shop project_name=jaffle_shop_bigquery warehouse=bigquery
3532
- run:
36-
name: "Create Starter Project - Snowflake"
33+
name: "Create Starter Project - Postgres"
3734
command: |
38-
mkdir jaffle_shop_snowflake
3935
. venv/bin/activate
40-
dbt-init --client jaffle-shop --warehouse snowflake --target-dir ./jaffle_shop_snowflake
36+
cookiecutter --no-input gh:fishtown-analytics/dbt-init --checkout ${CIRCLE_BRANCH} name=jaffle_shop project_name=jaffle_shop_postgres warehouse=postgres
4137
- save_cache:
4238
key: deps1-{{ .Branch }}
4339
paths:

0 commit comments

Comments
 (0)