-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
15 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,8 +10,8 @@ on: | |
|
||
env: | ||
# all credentials must be present to be passed to dbt runner | ||
DESTINATION__POSTGRES__CREDENTIALS: postgres://[email protected]:5432/dlt_data | ||
DESTINATION__REDSHIFT__CREDENTIALS: postgres://[email protected]:5439/chat_analytics_rasa_ci | ||
DESTINATION__POSTGRES__CREDENTIALS: postgresql://[email protected]:5432/dlt_data | ||
DESTINATION__REDSHIFT__CREDENTIALS: postgresql://[email protected]:5439/chat_analytics_rasa_ci | ||
DESTINATION__CREDENTIALS__PASSWORD: ${{ secrets.PG_PASSWORD }} | ||
|
||
DESTINATION__CREDENTIALS__PROJECT_ID: chat-analytics-rasa-ci | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
name: test loader redshift and postgres | ||
name: test redshift, postgres and duckdb | ||
|
||
on: | ||
pull_request: | ||
|
@@ -9,18 +9,18 @@ on: | |
workflow_dispatch: | ||
|
||
env: | ||
DESTINATION__POSTGRES__CREDENTIALS: postgres://[email protected]:5432/dlt_data | ||
DESTINATION__REDSHIFT__CREDENTIALS: postgres://[email protected]:5439/chat_analytics_rasa_ci | ||
DESTINATION__POSTGRES__CREDENTIALS: postgresql://[email protected]:5432/dlt_data | ||
DESTINATION__REDSHIFT__CREDENTIALS: postgresql://[email protected]:5439/chat_analytics_rasa_ci | ||
DESTINATION__DUCKDB__CREDENTIALS: duckdb:///_storage/test_quack.duckdb | ||
# password is the same so it will be shared | ||
CREDENTIALS__PASSWORD: ${{ secrets.PG_PASSWORD }} | ||
DATASET_NAME: workflowtest | ||
|
||
RUNTIME__LOG_LEVEL: ERROR | ||
|
||
jobs: | ||
|
||
run_loader: | ||
name: Tests redshift loader | ||
name: test destinations redshift, postgres and duckdb | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
|
@@ -63,7 +63,7 @@ jobs: | |
|
||
- name: Install dependencies | ||
# if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' | ||
run: poetry install --no-interaction -E redshift | ||
run: poetry install --no-interaction -E redshift -E duckdb | ||
|
||
# - name: Install self | ||
# run: poetry install --no-interaction | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters