mirror of
https://github.com/FlipsideCrypto/boba-models.git
synced 2026-02-06 13:46:44 +00:00
set up
This commit is contained in:
parent
f7c1797bb5
commit
0e9154bf61
@ -15,5 +15,5 @@ jobs:
|
||||
with:
|
||||
command_name: Run Curated Models
|
||||
command: |
|
||||
dbt run -m "$PROJECT_NAME,tag:curated" "fsc_evm,tag:curated"
|
||||
dbt run -m "$PROJECT_NAME,tag:curated" "fsc_evm,tag:curated" "fsc_evm,tag:streamline,tag:balances,tag:complete" "fsc_evm,tag:streamline,tag:balances,tag:records" "fsc_evm,tag:streamline,tag:balances,tag:realtime" "fsc_evm,tag:streamline,tag:stablecoin_reads,tag:complete" "fsc_evm,tag:streamline,tag:stablecoin_reads,tag:realtime" --vars '{"STREAMLINE_INVOKE_STREAMS":True}'
|
||||
secrets: inherit
|
||||
19
.github/workflows/dbt_run_scheduled_curated_daily.yml
vendored
Normal file
19
.github/workflows/dbt_run_scheduled_curated_daily.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
name: dbt_run_scheduled_curated_daily
|
||||
run-name: dbt_run_scheduled_curated_daily
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
branches:
|
||||
- "main"
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}
|
||||
|
||||
jobs:
|
||||
called_workflow_template:
|
||||
uses: FlipsideCrypto/fsc-evm/.github/workflows/dbt_run_template.yml@main
|
||||
with:
|
||||
command_name: Run Curated Daily Models
|
||||
command: |
|
||||
dbt run -m "fsc_evm,tag:silver,tag:balances" "fsc_evm,tag:gold,tag:balances" "fsc_evm,tag:curated_daily"
|
||||
secrets: inherit
|
||||
19
.github/workflows/dbt_run_streamline_reads_history.yml
vendored
Normal file
19
.github/workflows/dbt_run_streamline_reads_history.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
name: dbt_run_streamline_reads_history
|
||||
run-name: dbt_run_streamline_reads_history
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
branches:
|
||||
- "main"
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}
|
||||
|
||||
jobs:
|
||||
called_workflow_template:
|
||||
uses: FlipsideCrypto/fsc-evm/.github/workflows/dbt_run_template.yml@main
|
||||
with:
|
||||
command_name: Run Reads History Models
|
||||
command: |
|
||||
dbt run --vars '{"STREAMLINE_INVOKE_STREAMS":True}' -m "fsc_evm,tag:streamline,tag:stablecoin_reads,tag:complete" "fsc_evm,tag:streamline,tag:stablecoin_reads,tag:history"
|
||||
secrets: inherit
|
||||
@ -106,6 +106,8 @@ models:
|
||||
+enabled: true
|
||||
chain_stats:
|
||||
+enabled: true
|
||||
stablecoins:
|
||||
+enabled: true
|
||||
balances_package:
|
||||
+enabled: false
|
||||
erc20:
|
||||
|
||||
@ -17,6 +17,7 @@ sources:
|
||||
- name: token_reads
|
||||
- name: balances_erc20
|
||||
- name: balances_native
|
||||
- name: stablecoin_reads
|
||||
- name: crosschain_silver
|
||||
database: >-
|
||||
{{ 'CROSSCHAIN_DEV' if '_DEV' in target.database.upper() else 'CROSSCHAIN' }}
|
||||
@ -29,11 +30,17 @@ sources:
|
||||
- name: complete_provider_prices
|
||||
- name: complete_token_asset_metadata
|
||||
- name: complete_token_prices
|
||||
- name: tokens_stablecoins
|
||||
- name: crosschain_public
|
||||
database: crosschain
|
||||
schema: bronze_public
|
||||
tables:
|
||||
- name: user_abis
|
||||
- name: crosschain_gold
|
||||
database: crosschain
|
||||
schema: core
|
||||
tables:
|
||||
- name: dim_dates
|
||||
- name: complete_streamline
|
||||
database: "{{ target.database }}"
|
||||
schema: streamline
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
packages:
|
||||
- git: https://github.com/FlipsideCrypto/fsc-evm.git
|
||||
revision: v4.35.2
|
||||
revision: v4.38.6
|
||||
|
||||
Loading…
Reference in New Issue
Block a user