Skip to content

Commit

Permalink
different yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
dataders committed Nov 8, 2021
1 parent 32e520d commit 9da24fa
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ jobs:
git submodule sync --recursive
git submodule update --recursive --init
- run: &setup-dbt
- run: &setup-dbt-azsql
name: "Setup dbt"
command: |
python3 -m venv venv
. venv/bin/activate
pip install --upgrade pip setuptools
pip install git+https://github.com/dbt-msft/dbt-synapse.git#egg=dbt-synapse
pip install dbt-sqlserver==0.21.1rc1
mkdir -p ~/.dbt
cp integration_tests/ci/sample.profiles.yml ~/.dbt/profiles.yml
dbt --version
Expand Down Expand Up @@ -80,7 +80,17 @@ jobs:
- run: *pull-submodules
- azure-cli/install
- azure-cli/login-with-service-principal: *azure-creds
- run: *setup-dbt
- run: &setup-dbt-synapse
name: "Setup dbt"
command: |
python3 -m venv venv
. venv/bin/activate
pip install --upgrade pip setuptools
pip install git+https://github.com/dbt-msft/dbt-synapse.git#egg=dbt-synapse
mkdir -p ~/.dbt
cp integration_tests/ci/sample.profiles.yml ~/.dbt/profiles.yml
dbt --version
pip list | grep "dbt"
- run:
name: "Run Tests"
command: |
Expand Down

0 comments on commit 9da24fa

Please sign in to comment.