mirror of
https://github.com/FlipsideCrypto/ronin-models.git
synced 2026-02-06 11:06:55 +00:00
20 lines
688 B
YAML
20 lines
688 B
YAML
name: dbt_run_streamline_chainhead
|
|
run-name: dbt_run_streamline_chainhead
|
|
|
|
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 Chainhead Models
|
|
command: |
|
|
dbt run --vars '{"STREAMLINE_INVOKE_STREAMS":True, "MAIN_SL_RECEIPTS_BY_HASH_REALTIME_SQL_LIMIT": 240000}' -m "fsc_evm,tag:chainhead" "fsc_evm,tag:streamline,tag:core,tag:complete" "fsc_evm,tag:streamline,tag:core,tag:realtime" --exclude "fsc_evm,tag:receipts"
|
|
dbt test -m "fsc_evm,tag:chainhead"
|
|
secrets: inherit |