Skip to content
Open
Changes from 1 commit
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
7 changes: 6 additions & 1 deletion .github/workflows/container-validation-backends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ on:
required: false
type: boolean
default: false
schedule:
- cron: '0 8 * * *' # Daily at 08:00 UTC - runs fault tolerance tests

concurrency:
# The group name is a ternary operation. If the ref_name is 'main',
Expand Down Expand Up @@ -330,7 +332,10 @@ jobs:

deploy-test-fault-tolerance:
runs-on: cpu-amd-m5-2xlarge
if: needs.changed-files.outputs.has_code_changes == 'true'
# Only run on nightly schedule or when explicitly requested
if: |
needs.changed-files.outputs.has_code_changes == 'true' &&
(github.event_name == 'schedule' || github.event.inputs.run_deploy_operator == 'true')
needs: [changed-files, operator, vllm, trtllm, sglang]
permissions:
contents: read
Expand Down
Loading