From b22263720e79895e7ea742de5afbb9985f93d43d Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 2 May 2026 16:50:05 +0100 Subject: [PATCH] ci: make performance workflow sanity nonblocking --- .github/workflows/openclaw-performance.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/openclaw-performance.yml b/.github/workflows/openclaw-performance.yml index 3faf2a42c66..9d5a5367d03 100644 --- a/.github/workflows/openclaw-performance.yml +++ b/.github/workflows/openclaw-performance.yml @@ -176,9 +176,17 @@ jobs: } NODE - - name: Kova self-check + - name: Kova version and plan sanity if: steps.lane.outputs.run == 'true' - run: kova self-check --json + shell: bash + run: | + set -euo pipefail + kova version --json + kova matrix plan \ + --profile "$PROFILE" \ + --target "local-build:${GITHUB_WORKSPACE}" \ + --include scenario:fresh-install \ + --json >/tmp/kova-plan.json - name: Configure live OpenAI auth if: ${{ steps.lane.outputs.run == 'true' && matrix.live == 'true' }}