From 6528079d082404010ce4f05bd2438f7d1f261566 Mon Sep 17 00:00:00 2001 From: Sam Debruyn Date: Mon, 17 Jan 2022 10:40:35 +0100 Subject: [PATCH] set env vars explicitly to fix circle ci check --- .circleci/config.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4ff11346..4eb06c84 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -125,11 +125,14 @@ jobs: export AZURE_TENANT_ID="$DBT_AZURE_TENANT" cd test/integration dbt compile --target azuresql_azauto - # - run: - # name: cnxn -- Azure SQL - AZ SP env - # command: | - # cd test/integration - # dbt compile --target azuresql_azenv + - run: + name: cnxn -- Azure SQL - AZ SP env + command: | + export AZURE_CLIENT_ID="$DBT_AZURE_SP_NAME" + export AZURE_CLIENT_SECRET="$DBT_AZURE_SP_SECRET" + export AZURE_TENANT_ID="$DBT_AZURE_TENANT" + cd test/integration + dbt compile --target azuresql_azenv workflows: main: