From e5043f658ac419a8f2e7ba9dee4abf6da1c4c11d Mon Sep 17 00:00:00 2001 From: Waleed Latif Date: Tue, 1 Sep 2026 13:10:25 -0700 Subject: [PATCH] perf(tests): drop dead upload-context re-exports and unify the CI dummy key --- .github/workflows/test-build.yml | 4 ++-- apps/sim/lib/uploads/index.ts | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 9421c157b24..f258c716310 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -190,7 +190,7 @@ jobs: NODE_OPTIONS: '--no-warnings --max-old-space-size=8192' NEXT_PUBLIC_APP_URL: 'https://www.sim.ai' DATABASE_URL: 'postgresql://postgres:postgres@localhost:5432/simstudio' - ENCRYPTION_KEY: '7cf672e460e430c1fba707575c2b0e2ad5a99dddf9b7b7e3b5646e630861db1c' # dummy key for CI only + ENCRYPTION_KEY: '0000000000000000000000000000000000000000000000000000000000000000' # dummy key for CI only TURBO_CACHE_DIR: .turbo SIM_TEST_SHARD: 1/2 run: bun run test @@ -360,6 +360,6 @@ jobs: STRIPE_WEBHOOK_SECRET: 'dummy_secret_for_ci_only' RESEND_API_KEY: 'dummy_key_for_ci_only' AWS_REGION: 'us-west-2' - ENCRYPTION_KEY: '7cf672e460e430c1fba707575c2b0e2ad5a99dddf9b7b7e3b5646e630861db1c' # dummy key for CI only + ENCRYPTION_KEY: '0000000000000000000000000000000000000000000000000000000000000000' # dummy key for CI only TURBO_CACHE_DIR: .turbo run: bunx turbo run build --filter=@sim/app diff --git a/apps/sim/lib/uploads/index.ts b/apps/sim/lib/uploads/index.ts index f145c123f97..fbaa9c3fe6b 100644 --- a/apps/sim/lib/uploads/index.ts +++ b/apps/sim/lib/uploads/index.ts @@ -5,8 +5,6 @@ export { } from '@/lib/uploads/config' export * as ChatFiles from '@/lib/uploads/contexts/chat' export * as CopilotFiles from '@/lib/uploads/contexts/copilot' -export * as ExecutionFiles from '@/lib/uploads/contexts/execution' -export * as WorkspaceFiles from '@/lib/uploads/contexts/workspace' export { getFileMetadata, getServePathPrefix,