-
Notifications
You must be signed in to change notification settings - Fork 3.1k
test(e2e): add model router routed guard for #3255 #3594
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
jyaunches
wants to merge
3
commits into
main
from
test/model-router-provider-routed-inference-e2e-guard
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| # SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
| # SPDX-License-Identifier: Apache-2.0 | ||
|
|
||
| name: brev-nightly-e2e | ||
|
|
||
| # Runs Brev launchable validation as a standalone nightly workflow while the | ||
| # main nightly-e2e workflow remains isolated from Brev platform flakiness. | ||
| # | ||
| # Suites: | ||
| # all credential-sanitization + telegram-injection | ||
| # messaging-providers Telegram + Discord provider/L7 proxy validation | ||
| # full install/onboard/inference/CLI path | ||
|
|
||
| on: | ||
| schedule: | ||
| - cron: "0 6 * * *" | ||
| workflow_dispatch: | ||
| inputs: | ||
| branch: | ||
| description: "Branch to test (default: ref used for this dispatch; schedule always tests main)" | ||
| required: false | ||
| default: "" | ||
| launchable_id: | ||
| description: "Published launchable ID override (empty = workflow/test default)" | ||
| required: false | ||
| default: "" | ||
| keep_alive: | ||
| description: "Keep Brev instances alive after tests (for SSH debugging)" | ||
| required: false | ||
| type: boolean | ||
| default: false | ||
|
|
||
| permissions: | ||
| contents: read | ||
|
|
||
| concurrency: | ||
| group: brev-nightly-e2e-${{ github.event_name }}-${{ github.event_name == 'workflow_dispatch' && github.ref || 'schedule' }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| brev-nightly-e2e: | ||
| if: github.repository == 'NVIDIA/NemoClaw' | ||
| strategy: | ||
| fail-fast: false | ||
| matrix: | ||
| test_suite: [all, messaging-providers, full] | ||
| uses: ./.github/workflows/e2e-branch-validation.yaml | ||
| with: | ||
| branch: ${{ github.event_name == 'schedule' && 'main' || inputs.branch || github.ref_name }} | ||
| test_suite: ${{ matrix.test_suite }} | ||
| use_launchable: true | ||
| use_published_launchable: true | ||
| launchable_id: ${{ github.event_name == 'workflow_dispatch' && inputs.launchable_id || '' }} | ||
| keep_alive: ${{ github.event_name == 'workflow_dispatch' && inputs.keep_alive || false }} | ||
| secrets: | ||
| BREV_API_KEY: ${{ secrets.BREV_API_KEY }} | ||
| BREV_ORG_ID: ${{ secrets.BREV_ORG_ID }} | ||
| NVIDIA_API_KEY: ${{ secrets.NVIDIA_API_KEY }} | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
Repository: NVIDIA/NemoClaw
Length of output: 281
Remove all undeclared reusable-workflow inputs.
The following inputs passed at lines 49-54 are not declared by
.github/workflows/e2e-branch-validation.yaml:branch,keep_alive,launchable_id,test_suite,use_launchable, anduse_published_launchable. Onlysecretsis declared as a workflow_call input. Passing undeclared inputs will cause workflow-call validation failure and prevent this job from executing.🧰 Tools
🪛 actionlint (1.7.12)
[error] 52-52: input "use_published_launchable" is not defined in "./.github/workflows/e2e-branch-validation.yaml" reusable workflow. defined inputs are "branch", "brev_create_timeout_seconds", "brev_gpu_min_vram", "brev_gpu_name", "brev_gpu_type", "brev_provider", "keep_alive", "pr_number", "setup_script_url", "test_suite", "use_launchable"
(workflow-call)
[error] 53-53: input "launchable_id" is not defined in "./.github/workflows/e2e-branch-validation.yaml" reusable workflow. defined inputs are "branch", "brev_create_timeout_seconds", "brev_gpu_min_vram", "brev_gpu_name", "brev_gpu_type", "brev_provider", "keep_alive", "pr_number", "setup_script_url", "test_suite", "use_launchable"
(workflow-call)
🤖 Prompt for AI Agents