Skip to content

Commit

Permalink
test profile
Browse files Browse the repository at this point in the history
  • Loading branch information
laysabit committed Jul 4, 2024
1 parent db483ad commit 1d4ce0c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/project_evaluator_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on:

env:
DBT_DEFAULT_PROFILE_TARGET: stellar_dbt_public
DBT_TARGET: prod
DBT_DATASET: crypto_stellar
DBT_PROJECT: crypto-stellar
DBT_PROFILES_DIR: ${{ github.workspace }}
DBT_TARGET: test
DBT_DATASET: test_project_evaluator
DBT_PROJECT: test-hubble-319619
DBT_MAX_BYTES_BILLED: 1000000000000
DBT_JOB_TIMEOUT: 300
DBT_THREADS: 1
Expand Down
5 changes: 4 additions & 1 deletion profiles.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
stellar_dbt_public:
target: "{{ env_var('DBT_TARGET') }}"
outputs:
prod:
prod: &default
dataset: "{{ env_var('DBT_DATASET') }}" # the name of your dataset
maximum_bytes_billed: "{{ env_var('DBT_MAX_BYTES_BILLED') | as_number }}" # limits the maximum number of processed bytes
job_execution_timeout_seconds: "{{ env_var('DBT_JOB_TIMEOUT') | int }}" # the number of seconds dbt should wait for queries to complete, after being submitted successfully
Expand All @@ -12,3 +12,6 @@ stellar_dbt_public:
location: us # the BigQuery dataset location
method: oauth
type: bigquery

test:
<<: *default

0 comments on commit 1d4ce0c

Please sign in to comment.