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
10 changes: 9 additions & 1 deletion .github/workflows/_harness-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,14 @@ jobs:
if: inputs.stack_mode == 'registry'
run: cargo build --locked --release --manifest-path harness/Cargo.toml -p harness-e2e

- name: Checkout workflow scenario validator
uses: actions/checkout@v5
with:
ref: ${{ github.sha }}
path: _workflow
sparse-checkout: .github/scripts/validate_harness_scenarios.py
sparse-checkout-cone-mode: false

- name: Validate exact scenarios against the executable suite
id: scenarios
env:
Expand All @@ -330,7 +338,7 @@ jobs:
run: |
set -euo pipefail
available=$(harness/target/release/harness-e2e list)
resolved=$(python3 .github/scripts/validate_harness_scenarios.py \
resolved=$(python3 _workflow/.github/scripts/validate_harness_scenarios.py \
--available-json "$available" \
--requested-json "$REQUESTED_SCENARIOS" \
--required-json "$REQUIRED_SCENARIOS" \
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/harness-e2e-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ jobs:
with:
source_ref: ${{ inputs.source_sha }}
stack_mode: registry
runs: ${{ inputs.runs }}
max_parallel: 2
runs: ${{ fromJSON(format('{0}', inputs.runs)) }}
max_parallel: 1
validation_lane: ${{ inputs.lane }}
cli_channel: ${{ inputs.channel }}
registry_tag: ${{ inputs.channel }}
Expand Down
Loading