Skip to content

Commit 25c7fa3

Browse files
committed
fix(showcase): add --ci flag to eval workflow command
The eval workflow was missing --ci, causing it to try Docker Compose lifecycle in CI (which fails because there's no .env file). The --ci flag skips Docker and assumes services are already running or uses native execution.
1 parent 3eeb322 commit 25c7fa3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/showcase_eval.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ jobs:
296296
# Build the command. EVAL_SCOPE_FLAG may contain spaces (e.g. "--slug mastra,agno")
297297
# so we intentionally leave it unquoted for word splitting.
298298
# shellcheck disable=SC2086
299-
CMD="showcase/bin/showcase eval --${EVAL_LEVEL} ${EVAL_SCOPE_FLAG} --parallel 8 --json --baseline compare --timeout 60000"
299+
CMD="showcase/bin/showcase eval --${EVAL_LEVEL} ${EVAL_SCOPE_FLAG} --parallel 8 --json --baseline compare --timeout 60000 --ci"
300300
echo "::group::Running: $CMD"
301301
302302
EXIT_CODE=0

0 commit comments

Comments
 (0)