make core run as part of non-core (#407)

This commit is contained in:
desmond-hui 2023-11-17 07:40:05 -08:00 committed by GitHub
parent 46bae519d3
commit 8bf643dcd2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -42,5 +42,5 @@ jobs:
- name: Run DBT Jobs
run: |
dbt run-operation run_sp_refresh_external_tables_full
dbt run -s "solana_models,tag:scheduled_non_core"
dbt run -s "solana_models,tag:scheduled_core" "solana_models,tag:scheduled_non_core"

View File

@ -1,5 +1,5 @@
workflow_name,workflow_schedule
dbt_run_get_nft_compressed_backfill,"*/15 * * * *"
dbt_run_incremental,"1,16,31,46 * * * *"
dbt_run_incremental_non_core,"25,50 * * * *"
dbt_run_incremental,"16,46 * * * *"
dbt_run_incremental_non_core,"1,31 * * * *"
dbt_test_tasks,"0,30 * * * *"

1 workflow_name workflow_schedule
2 dbt_run_get_nft_compressed_backfill */15 * * * *
3 dbt_run_incremental 1,16,31,46 * * * * 16,46 * * * *
4 dbt_run_incremental_non_core 25,50 * * * * 1,31 * * * *
5 dbt_test_tasks 0,30 * * * *