From dc5afc253a33174165e8b745137987ad86741d13 Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 9 Sep 2026 16:28:49 +0000 Subject: [PATCH] Remove the `start` script from the atlas package and filter the bench workflow's start tasks --- .github/workflows/bench.yml | 8 ++++---- libs/@local/graph/atlas/docs/task-dependencies.json | 1 - libs/@local/graph/atlas/package.json | 1 - 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 657e65903c4..de6e4dd13f6 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -274,11 +274,11 @@ jobs: # Optimistically compile background tasks. turbo run compile:release --env-mode=loose mkdir -p logs - turbo run start --env-mode=loose --log-order stream >var/logs/base-background-task.log 2>&1 & + turbo run start --filter @apps/hash-graph --env-mode=loose --log-order stream >var/logs/base-background-task.log 2>&1 & PID=$! echo "pid=$PID" | tee -a "$GITHUB_OUTPUT" - turbo run start:healthcheck --env-mode=loose + turbo run start:healthcheck --filter @apps/hash-graph --env-mode=loose - name: Run base benches if: github.event_name == 'pull_request' @@ -366,11 +366,11 @@ jobs: # Optimistically compile background tasks. turbo run compile:release --env-mode=loose mkdir -p logs - turbo run start --env-mode=loose --log-order stream >var/logs/head-background-task.log 2>&1 & + turbo run start --filter @apps/hash-graph --env-mode=loose --log-order stream >var/logs/head-background-task.log 2>&1 & PID=$! echo "pid=$PID" | tee -a "$GITHUB_OUTPUT" - turbo run start:healthcheck --env-mode=loose + turbo run start:healthcheck --filter @apps/hash-graph --env-mode=loose - name: Run head benches run: turbo run bench:integration --filter "${{ matrix.name }}" diff --git a/libs/@local/graph/atlas/docs/task-dependencies.json b/libs/@local/graph/atlas/docs/task-dependencies.json index 78ecb3f8a44..e6a17bd2d00 100644 --- a/libs/@local/graph/atlas/docs/task-dependencies.json +++ b/libs/@local/graph/atlas/docs/task-dependencies.json @@ -22,7 +22,6 @@ ], "fix:clippy": [], "lint:clippy": [], - "start": [], "test:integration": [], "test:miri": [], "test:unit": [] diff --git a/libs/@local/graph/atlas/package.json b/libs/@local/graph/atlas/package.json index b4b40a3e03d..57e55851c4a 100644 --- a/libs/@local/graph/atlas/package.json +++ b/libs/@local/graph/atlas/package.json @@ -8,7 +8,6 @@ "doc:dependency-diagram": "cargo run -p hash-repo-chores -- dependency-diagram --output docs/dependency-diagram.mmd --root hash-graph-atlas --root-deps-and-dependents --link-mode non-roots --include-dev-deps --include-build-deps --logging-console-level info", "fix:clippy": "just clippy --fix", "lint:clippy": "just clippy", - "start": "cargo run -p hash-graph-atlas --bin hash-graph-atlas --", "test:integration": "cargo nextest run --package hash-graph-atlas --all-features --filterset 'kind(test)'", "test:miri": "cargo miri test --lib -- ::miri::", "test:unit": "mise run test:unit @rust/hash-graph-atlas -- --filterset 'not kind(test)'"