From 2ec8c4244f9c2200562ca05558b52d5cf98915ff Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Tue, 19 May 2026 13:12:31 +0000 Subject: [PATCH] ci: disable elementary artifact hooks during seed Co-authored-by: Yosef Arbiv --- .github/workflows/test-warehouse.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-warehouse.yml b/.github/workflows/test-warehouse.yml index b2eb2f0b7..0e34c0c2e 100644 --- a/.github/workflows/test-warehouse.yml +++ b/.github/workflows/test-warehouse.yml @@ -348,7 +348,12 @@ jobs: - name: Seed e2e dbt project working-directory: ${{ env.E2E_DBT_PROJECT_DIR }} if: steps.seed-cache.outputs.cache-hit != 'true' && inputs.warehouse-type != 'dremio' && inputs.warehouse-type != 'spark' - run: dbt seed -f --target "$WAREHOUSE_TYPE" + run: | + # The seed step runs before Elementary models exist, so artifact hooks + # would try to insert into missing Elementary relations. + dbt seed -f \ + --target "$WAREHOUSE_TYPE" \ + --vars '{"disable_run_results": true, "disable_dbt_invocation_autoupload": true}' - name: Save seed cache from Docker volumes if: steps.seed-cache.outputs.cache-hit != 'true' && (inputs.warehouse-type == 'postgres' || inputs.warehouse-type == 'clickhouse')