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

Commit c0e32b0

Browse files
committed
Update circle jobs
1 parent 5cd9201 commit c0e32b0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,31 +13,31 @@ jobs:
1313
command: |
1414
python3 -m venv venv
1515
. venv/bin/activate
16-
pip install -e .
16+
pip install cookiecutter
1717
- run:
1818
name: "Create Starter Project - BigQuery"
1919
command: |
2020
mkdir jaffle_shop_bigquery
2121
. venv/bin/activate
22-
dbt-init --client jaffle-shop --warehouse bigquery --target-dir ./jaffle_shop_bigquery
22+
cookiecutter --no-input gh:fishtown-analytics/dbt-init --checkout ${CIRCLE_BRANCH} name=jaffle_shop warehouse=1
2323
- run:
2424
name: "Create Starter Project - Postgres"
2525
command: |
2626
mkdir jaffle_shop_postgres
2727
. venv/bin/activate
28-
dbt-init --client jaffle-shop --warehouse postgres --target-dir ./jaffle_shop_postgres
28+
cookiecutter --no-input gh:fishtown-analytics/dbt-init --checkout ${CIRCLE_BRANCH} name=jaffle_shop warehouse=2
2929
- run:
3030
name: "Create Starter Project - Redshift"
3131
command: |
3232
mkdir jaffle_shop_redshift
3333
. venv/bin/activate
34-
dbt-init --client jaffle-shop --warehouse redshift --target-dir ./jaffle_shop_redshift
34+
cookiecutter --no-input gh:fishtown-analytics/dbt-init --checkout ${CIRCLE_BRANCH} name=jaffle_shop warehouse=3
3535
- run:
3636
name: "Create Starter Project - Snowflake"
3737
command: |
3838
mkdir jaffle_shop_snowflake
3939
. venv/bin/activate
40-
dbt-init --client jaffle-shop --warehouse snowflake --target-dir ./jaffle_shop_snowflake
40+
cookiecutter --no-input gh:fishtown-analytics/dbt-init --checkout ${CIRCLE_BRANCH} name=jaffle_shop warehouse=4
4141
- save_cache:
4242
key: deps1-{{ .Branch }}
4343
paths:

0 commit comments

Comments
 (0)