File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -53,10 +53,10 @@ jobs:
5353 needs : [build]
5454 uses : ./.github/workflows/_smoke.yml
5555
56- # ── Soak tests (optional) ───────────────────── ──────────────
56+ # ── Soak tests (optional, parallel with smoke) ──────────────
5757 soak :
58- if : ${{ inputs.soak_level != 'none' && !cancelled() && ( needs.test .result == 'success' || needs.test.result == 'skipped') }}
59- needs : [test ]
58+ if : ${{ inputs.soak_level != 'none' && !cancelled() && needs.build .result == 'success' }}
59+ needs : [build ]
6060 uses : ./.github/workflows/_soak.yml
6161 with :
6262 duration_minutes : 10
Original file line number Diff line number Diff line change 5656 # ── 5. Soak tests ─────────────────────────────────────────────
5757 soak :
5858 if : ${{ inputs.soak_level != 'none' }}
59- needs : [test ]
59+ needs : [build ]
6060 uses : ./.github/workflows/_soak.yml
6161 with :
6262 duration_minutes : 10
You can’t perform that action at this time.
0 commit comments