Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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 }}"
Expand Down
1 change: 0 additions & 1 deletion libs/@local/graph/atlas/docs/task-dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
],
"fix:clippy": [],
"lint:clippy": [],
"start": [],
"test:integration": [],
"test:miri": [],
"test:unit": []
Expand Down
1 change: 0 additions & 1 deletion libs/@local/graph/atlas/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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)'"
Expand Down
Loading