Skip to content

Commit

Permalink
break into two jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
dataders committed Dec 17, 2020
1 parent bad052d commit 7f680e4
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ orbs:
python: circleci/[email protected]

jobs:
build-and-test:
integration-sqlserver:
docker:
- image: dataders/pyodbc:1.4
- image: mcr.microsoft.com/mssql/server:2019-latest
Expand All @@ -26,13 +26,22 @@ jobs:
- run:
name: Test adapter on SQL Server against dbt-adapter-tests
command: tox -e integration-sqlserver
integration-azuresql:
docker:
- image: dataders/pyodbc:1.4
executor: python/default
steps:
- checkout
- python/install-packages:
pkg-manager: pip
- run:
name: Test adapter on Azure SQL against dbt-adapter-tests
command: tox -e integration-azuresql

workflows:
main:
jobs:
- build-and-test:
- integration-sqlserver
- integration-azuresql:
context:
- DBT_SYNAPSE_PROFILE

0 comments on commit 7f680e4

Please sign in to comment.